Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
78 lines
1.5 KiB
Nix
78 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
curl,
|
|
gtest,
|
|
libtorrent,
|
|
ncurses,
|
|
jsonRpcSupport ? true,
|
|
nlohmann_json,
|
|
xmlRpcSupport ? true,
|
|
xmlrpc_c,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "jesec-rtorrent";
|
|
version = "0.9.8-r16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jesec";
|
|
repo = "rtorrent";
|
|
rev = "v${version}";
|
|
hash = "sha256-i7c1jSawHshj1kaXl8tdpelIKU24okeg9K5/+ht6t2k=";
|
|
};
|
|
|
|
patches = [
|
|
./avoid-stack-overflow-for-lockfile-buf.patch
|
|
];
|
|
|
|
passthru = {
|
|
inherit libtorrent;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
curl
|
|
libtorrent
|
|
ncurses
|
|
]
|
|
++ lib.optional jsonRpcSupport nlohmann_json
|
|
++ lib.optional xmlRpcSupport xmlrpc_c;
|
|
|
|
cmakeFlags = [
|
|
"-DUSE_RUNTIME_CA_DETECTION=NO"
|
|
]
|
|
++ lib.optional (!jsonRpcSupport) "-DUSE_JSONRPC=NO"
|
|
++ lib.optional (!xmlRpcSupport) "-DUSE_XMLRPC=NO";
|
|
|
|
doCheck = true;
|
|
|
|
nativeCheckInputs = [
|
|
gtest
|
|
];
|
|
|
|
prePatch = ''
|
|
substituteInPlace src/main.cc \
|
|
--replace "/etc/rtorrent/rtorrent.rc" "${placeholder "out"}/etc/rtorrent/rtorrent.rc"
|
|
'';
|
|
|
|
postFixup = ''
|
|
mkdir -p $out/etc/rtorrent
|
|
cp $src/doc/rtorrent.rc $out/etc/rtorrent/rtorrent.rc
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Ncurses client for libtorrent, ideal for use with screen, tmux, or dtach (jesec's fork)";
|
|
homepage = "https://github.com/jesec/rtorrent";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ winter ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "rtorrent";
|
|
};
|
|
}
|