From 2293f663f8fc74f6b2f4b1807e69cd3c3e93e2ff Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Tue, 25 Jun 2024 11:36:35 -0300 Subject: rtorrent: move to pkgs/by-name --- pkgs/by-name/rt/rtorrent/package.nix | 81 ++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 pkgs/by-name/rt/rtorrent/package.nix (limited to 'pkgs/by-name/rt') diff --git a/pkgs/by-name/rt/rtorrent/package.nix b/pkgs/by-name/rt/rtorrent/package.nix new file mode 100644 index 0000000000000..f55c989eee6d2 --- /dev/null +++ b/pkgs/by-name/rt/rtorrent/package.nix @@ -0,0 +1,81 @@ +{ lib +, stdenv +, fetchFromGitHub +, autoreconfHook +, autoconf-archive +, cppunit +, curl +, libsigcxx +, libtool +, libtorrent +, ncurses +, openssl +, pkg-config +, xmlrpc_c +, zlib +, nixosTests +, unstableGitUpdater +}: + +stdenv.mkDerivation { + pname = "rakshasa-rtorrent"; + version = "0.9.8-unstable-2023-03-16"; + + src = fetchFromGitHub { + owner = "rakshasa"; + repo = "rtorrent"; + rev = "1da0e3476dcabbf74b2e836d6b4c37b4d96bde09"; + hash = "sha256-OXOZSMuNAU+VGwNyyfzcmkTRjDJq9HsKUNxZDYpSvFQ="; + }; + + passthru = { + inherit libtorrent; + }; + + nativeBuildInputs = [ + autoconf-archive + autoreconfHook + pkg-config + ]; + + buildInputs = [ + cppunit + curl + libsigcxx + libtool + libtorrent + ncurses + openssl + xmlrpc_c + zlib + ]; + + configureFlags = [ + "--with-xmlrpc-c" + "--with-posix-fallocate" + ]; + + passthru = { + updateScript = unstableGitUpdater { tagPrefix = "v"; }; + tests = { + inherit (nixosTests) rtorrent; + }; + }; + + enableParallelBuilding = true; + + postInstall = '' + mkdir -p $out/share/man/man1 $out/share/doc/rtorrent + mv doc/old/rtorrent.1 $out/share/man/man1/rtorrent.1 + mv doc/rtorrent.rc $out/share/doc/rtorrent/rtorrent.rc + ''; + + meta = with lib; { + homepage = "https://rakshasa.github.io/rtorrent/"; + description = "Ncurses client for libtorrent, ideal for use with screen, tmux, or dtach"; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ ebzzry codyopel thiagokokada ]; + platforms = platforms.unix; + mainProgram = "rtorrent"; + }; +} -- cgit 1.4.1