2015-12-06 09:36:28 -08:00
|
|
|
{ stdenv, fetchurl, fetchFromGitHub, pkgconfig
|
|
|
|
, libtool, autoconf, automake, cppunit
|
|
|
|
, libtorrent, ncurses, libsigcxx, curl
|
2014-08-14 14:06:59 -07:00
|
|
|
, zlib, openssl, xmlrpc_c
|
2015-12-06 09:36:28 -08:00
|
|
|
|
|
|
|
# This no longer works
|
|
|
|
, colorSupport ? false
|
2013-12-09 13:11:30 -08:00
|
|
|
}:
|
2010-07-28 04:55:54 -07:00
|
|
|
|
2013-12-09 13:11:30 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-07-19 18:35:43 -07:00
|
|
|
pname = "rtorrent";
|
|
|
|
version = "0.9.8";
|
2008-02-23 04:11:27 -08:00
|
|
|
|
2015-12-06 09:36:28 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rakshasa";
|
2019-07-19 18:35:43 -07:00
|
|
|
repo = pname;
|
2018-08-04 06:31:43 -07:00
|
|
|
rev = "v${version}";
|
2019-07-19 18:35:43 -07:00
|
|
|
sha256 = "0hcaf1brk402caa7hhlb2r1c93mjzxkm8gb19xfl33gkp3jpf372";
|
2008-02-23 04:11:27 -08:00
|
|
|
};
|
|
|
|
|
2017-09-14 12:24:37 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2015-12-06 09:36:28 -08:00
|
|
|
buildInputs = [
|
2017-09-14 12:24:37 -07:00
|
|
|
libtool autoconf automake cppunit
|
2015-12-06 09:36:28 -08:00
|
|
|
libtorrent ncurses libsigcxx curl zlib openssl xmlrpc_c
|
|
|
|
];
|
|
|
|
|
|
|
|
# Optional patch adds support for custom configurable colors
|
|
|
|
# https://github.com/Chlorm/chlorm_overlay/blob/master/net-p2p/rtorrent/README.md
|
|
|
|
patches = stdenv.lib.optional colorSupport (fetchurl {
|
|
|
|
url = "https://gist.githubusercontent.com/codyopel/a816c2993f8013b5f4d6/raw/b952b32da1dcf14c61820dfcf7df00bc8918fec4/rtorrent-color.patch";
|
|
|
|
sha256 = "00gcl7yq6261rrfzpz2k8bd7mffwya0ifji1xqcvhfw50syk8965";
|
|
|
|
});
|
|
|
|
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
|
2015-12-04 08:17:22 -08:00
|
|
|
configureFlags = [ "--with-xmlrpc-c" "--with-posix-fallocate" ];
|
2011-07-18 07:34:46 -07:00
|
|
|
|
2015-12-06 09:36:28 -08:00
|
|
|
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
|
|
|
|
'';
|
2011-09-24 05:46:24 -07:00
|
|
|
|
2015-09-14 11:48:12 -07:00
|
|
|
meta = with stdenv.lib; {
|
2018-08-04 06:31:43 -07:00
|
|
|
homepage = https://rakshasa.github.io/rtorrent/;
|
2015-09-14 11:48:12 -07:00
|
|
|
description = "An ncurses client for libtorrent, ideal for use with screen, tmux, or dtach";
|
2011-07-18 07:34:46 -07:00
|
|
|
|
2015-09-14 11:48:12 -07:00
|
|
|
platforms = platforms.unix;
|
2016-05-16 13:30:20 -07:00
|
|
|
maintainers = with maintainers; [ ebzzry codyopel ];
|
2018-08-04 10:12:54 -07:00
|
|
|
license = licenses.gpl2Plus;
|
2008-02-23 04:11:27 -08:00
|
|
|
};
|
2010-07-28 04:55:54 -07:00
|
|
|
}
|