2010-07-28 11:55:54 +00:00
|
|
|
{ stdenv, fetchurl, libtorrent, ncurses, pkgconfig, libsigcxx, curl
|
2013-12-09 21:11:30 +00:00
|
|
|
, zlib, openssl
|
|
|
|
}:
|
2010-07-28 11:55:54 +00:00
|
|
|
|
2013-12-09 21:11:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "rtorrent-0.9.3";
|
2008-02-23 12:11:27 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-12-09 21:11:30 +00:00
|
|
|
url = "http://libtorrent.rakshasa.no/downloads/${name}.tar.gz";
|
|
|
|
sha256 = "043krhsiawigf8yjd5qfkdn5iqrssph1705dsx5fgbxipr0wm4wy";
|
2008-02-23 12:11:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libtorrent ncurses pkgconfig libsigcxx curl zlib openssl ];
|
2011-07-18 14:34:46 +00:00
|
|
|
|
2013-12-09 21:11:30 +00:00
|
|
|
# postInstall = ''
|
|
|
|
# mkdir -p $out/share/man/man1 $out/share/rtorrent
|
|
|
|
# mv doc/rtorrent.1 $out/share/man/man1/rtorrent.1
|
|
|
|
# mv doc/rtorrent.rc $out/share/rtorrent/rtorrent.rc
|
|
|
|
# '';
|
2011-09-24 12:46:24 +00:00
|
|
|
|
2008-02-23 12:11:27 +00:00
|
|
|
meta = {
|
2011-07-18 14:34:46 +00:00
|
|
|
homepage = "http://libtorrent.rakshasa.no/";
|
2009-03-03 13:27:40 +00:00
|
|
|
description = "An ncurses client for libtorrent, ideal for use with screen or dtach";
|
2011-07-18 14:34:46 +00:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2008-02-23 12:11:27 +00:00
|
|
|
};
|
2010-07-28 11:55:54 +00:00
|
|
|
}
|