summary refs log tree commit diff
path: root/pkgs/tools/networking/p2p
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-07-18 14:34:33 +0000
committerPeter Simons <simons@cryp.to>2011-07-18 14:34:33 +0000
commit21691b47d70cbdcb5ff5a97b184b0025fe066fdc (patch)
tree77fefa5df2eacccdfc0a660289beae6814a314e7 /pkgs/tools/networking/p2p
parent356928aad9957bbbff5bfb8c85b87c98a07fe3ed (diff)
downloadnixlib-21691b47d70cbdcb5ff5a97b184b0025fe066fdc.tar
nixlib-21691b47d70cbdcb5ff5a97b184b0025fe066fdc.tar.gz
nixlib-21691b47d70cbdcb5ff5a97b184b0025fe066fdc.tar.bz2
nixlib-21691b47d70cbdcb5ff5a97b184b0025fe066fdc.tar.lz
nixlib-21691b47d70cbdcb5ff5a97b184b0025fe066fdc.tar.xz
nixlib-21691b47d70cbdcb5ff5a97b184b0025fe066fdc.tar.zst
nixlib-21691b47d70cbdcb5ff5a97b184b0025fe066fdc.zip
libtorrent: updated to version 0.12.9
svn path=/nixpkgs/trunk/; revision=27823
Diffstat (limited to 'pkgs/tools/networking/p2p')
-rw-r--r--pkgs/tools/networking/p2p/libtorrent/default.nix20
1 files changed, 12 insertions, 8 deletions
diff --git a/pkgs/tools/networking/p2p/libtorrent/default.nix b/pkgs/tools/networking/p2p/libtorrent/default.nix
index b1456c0666e1..e702a406aad3 100644
--- a/pkgs/tools/networking/p2p/libtorrent/default.nix
+++ b/pkgs/tools/networking/p2p/libtorrent/default.nix
@@ -1,19 +1,23 @@
 { stdenv, fetchurl, pkgconfig, openssl, libsigcxx }:
 
-stdenv.mkDerivation rec {
-  pname = "libtorrent";
-  version = "0.12.6";
+let
+  version = "0.12.9";
+in
+stdenv.mkDerivation {
+  name = "libtorrent-${version}";
 
-  name = "${pname}-${version}";
-  
   src = fetchurl {
-    url = "http://libtorrent.rakshasa.no/downloads/${name}.tar.gz";
-    sha256 = "0abisz3jgfv4zmyzbsknzvz9hwakxxpdgfl33qk0aslnchqz60kv";
+    url = "http://libtorrent.rakshasa.no/downloads/libtorrent-${version}.tar.gz";
+    sha256 = "25dc9e8dd45d070f447e599bef08ef0ca421bac6e7f55e608dcd19360594af64";
   };
 
   buildInputs = [ pkgconfig openssl libsigcxx ];
-  
+
   meta = {
+    homepage = "http://libtorrent.rakshasa.no/";
     description = "A BitTorrent library written in C++ for *nix, with a focus on high performance and good code";
+
+    platforms = stdenv.lib.platforms.unix;
+    maintainers = [ stdenv.lib.maintainers.simons ];
   };
 }