about summary refs log tree commit diff
path: root/pkgs/development/python-modules/twisted
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2008-01-18 11:28:41 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2008-01-18 11:28:41 +0000
commita5e0e39cdb575a38216a2a0e9ee25eae5bb05397 (patch)
treee6b18a2d7ec3c888344793680aeb48ddd33e7e9a /pkgs/development/python-modules/twisted
parentb59d32be03c5cc10d8ebed0305524907fd062481 (diff)
downloadnixlib-a5e0e39cdb575a38216a2a0e9ee25eae5bb05397.tar
nixlib-a5e0e39cdb575a38216a2a0e9ee25eae5bb05397.tar.gz
nixlib-a5e0e39cdb575a38216a2a0e9ee25eae5bb05397.tar.bz2
nixlib-a5e0e39cdb575a38216a2a0e9ee25eae5bb05397.tar.lz
nixlib-a5e0e39cdb575a38216a2a0e9ee25eae5bb05397.tar.xz
nixlib-a5e0e39cdb575a38216a2a0e9ee25eae5bb05397.tar.zst
nixlib-a5e0e39cdb575a38216a2a0e9ee25eae5bb05397.zip
* makeWrapper: option --run <CMD> to run a command from the wrapper.
  This is so that the Unison wrapper can be generated with
  makeWrapper.
* Use makeWrapper as a buildInput everywhere.
* Updated BitTorrent, cvs2svn.

svn path=/nixpkgs/trunk/; revision=10213
Diffstat (limited to 'pkgs/development/python-modules/twisted')
-rw-r--r--pkgs/development/python-modules/twisted/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/twisted/default.nix b/pkgs/development/python-modules/twisted/default.nix
index 37a42faf8568..7fdf610d74ca 100644
--- a/pkgs/development/python-modules/twisted/default.nix
+++ b/pkgs/development/python-modules/twisted/default.nix
@@ -1,10 +1,10 @@
 {stdenv, fetchurl, python, ZopeInterface}:
 
 stdenv.mkDerivation {
-  name = "twisted-2.4.0";
+  name = "twisted-2.5.0";
   src = fetchurl {
-    url = http://tmrc.mit.edu/mirror/twisted/Twisted/2.4/Twisted-2.4.0.tar.bz2;
-    md5 = "42eb0c8fd0f8707a39fff1dd6adab27d";
+    url = http://tmrc.mit.edu/mirror/twisted/Twisted/2.5/Twisted-2.5.0.tar.bz2;
+    sha256 = "1kfj4354lm4kphm317giyldykyd17lba2xd7y512lxc38hzxzcpk";
   };
   buildInputs = [python];
   propagatedBuildInputs = [ZopeInterface];