summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-12-09 22:11:30 +0100
committerPeter Simons <simons@cryp.to>2013-12-09 22:35:32 +0100
commitf36d5c162cfff50042decf19373aa596e0ba7132 (patch)
treea3a9109889ae0b69802adcc4f966b4b3548a2ae2 /pkgs/tools
parent5acb97b972e4905393cc3a5d5e8cc1c132155d50 (diff)
downloadnixlib-f36d5c162cfff50042decf19373aa596e0ba7132.tar
nixlib-f36d5c162cfff50042decf19373aa596e0ba7132.tar.gz
nixlib-f36d5c162cfff50042decf19373aa596e0ba7132.tar.bz2
nixlib-f36d5c162cfff50042decf19373aa596e0ba7132.tar.lz
nixlib-f36d5c162cfff50042decf19373aa596e0ba7132.tar.xz
nixlib-f36d5c162cfff50042decf19373aa596e0ba7132.tar.zst
nixlib-f36d5c162cfff50042decf19373aa596e0ba7132.zip
rtorrent: update to version 0.9.3
This version is dubbed "unstable" and apparently it lacks the man page that
used to come with earlier releases. :-(

We need the latest version, though, because of the recent update to libtorrent.
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/p2p/rtorrent/default.nix24
1 files changed, 11 insertions, 13 deletions
diff --git a/pkgs/tools/networking/p2p/rtorrent/default.nix b/pkgs/tools/networking/p2p/rtorrent/default.nix
index b503c1d91521..78eaf81e8191 100644
--- a/pkgs/tools/networking/p2p/rtorrent/default.nix
+++ b/pkgs/tools/networking/p2p/rtorrent/default.nix
@@ -1,24 +1,22 @@
 { stdenv, fetchurl, libtorrent, ncurses, pkgconfig, libsigcxx, curl
-, zlib, openssl }:
+, zlib, openssl
+}:
 
-let
-  version = "0.9.2";
-in
-stdenv.mkDerivation {
-  name = "rtorrent-${version}";
+stdenv.mkDerivation rec {
+  name = "rtorrent-0.9.3";
 
   src = fetchurl {
-    url = "http://libtorrent.rakshasa.no/downloads/rtorrent-${version}.tar.gz";
-    sha256 = "5c8f8c780bee376afce3c1cde2f5ecb928f40bac23b2b8171deed5cf3c888c3d";
+    url = "http://libtorrent.rakshasa.no/downloads/${name}.tar.gz";
+    sha256 = "043krhsiawigf8yjd5qfkdn5iqrssph1705dsx5fgbxipr0wm4wy";
   };
 
   buildInputs = [ libtorrent ncurses pkgconfig libsigcxx curl zlib openssl ];
 
-  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
-  '';
+  # 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
+  # '';
 
   meta = {
     homepage = "http://libtorrent.rakshasa.no/";