summary refs log tree commit diff
path: root/pkgs/development/tools/misc/swig
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2007-05-14 01:05:53 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2007-05-14 01:05:53 +0000
commitfc9a530666ab1662c82af7220f34f4785fac207e (patch)
tree5078279b3f33b8b1d1f7482520ae776c651f69b3 /pkgs/development/tools/misc/swig
parent375526c382a74526e8b5caac2ef201b0fc305615 (diff)
downloadnixpkgs-fc9a530666ab1662c82af7220f34f4785fac207e.tar
nixpkgs-fc9a530666ab1662c82af7220f34f4785fac207e.tar.gz
nixpkgs-fc9a530666ab1662c82af7220f34f4785fac207e.tar.bz2
nixpkgs-fc9a530666ab1662c82af7220f34f4785fac207e.tar.lz
nixpkgs-fc9a530666ab1662c82af7220f34f4785fac207e.tar.xz
nixpkgs-fc9a530666ab1662c82af7220f34f4785fac207e.tar.zst
nixpkgs-fc9a530666ab1662c82af7220f34f4785fac207e.zip
1.3.29 -> 1.3.31
svn path=/nixpkgs/trunk/; revision=8684
Diffstat (limited to 'pkgs/development/tools/misc/swig')
-rw-r--r--pkgs/development/tools/misc/swig/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/swig/default.nix b/pkgs/development/tools/misc/swig/default.nix
index f34e5475e65..9e85993fd53 100644
--- a/pkgs/development/tools/misc/swig/default.nix
+++ b/pkgs/development/tools/misc/swig/default.nix
@@ -6,12 +6,12 @@ assert pythonSupport -> python != null;
 assert javaSupport -> jdk != null;
 
 stdenv.mkDerivation {
-  name = "swig-1.3.29";
+  name = "swig-1.3.31";
 
   builder = ./builder.sh;
   src = fetchurl {
-    url = http://nix.cs.uu.nl/dist/tarballs/swig-1.3.29.tar.gz;
-    md5 = "44c6f6d8d724cf7fa4a5109e6f63c9b1";
+    url = http://surfnet.dl.sourceforge.net/sourceforge/swig/swig-1.3.31.tar.gz;
+    sha256 = "01fqf6xvhaqh76kh13bknn5j7axpm1pdnjpzwxsa9d1lbq4n7bf2";
   };
 
   inherit perlSupport pythonSupport javaSupport;
@@ -19,4 +19,4 @@ stdenv.mkDerivation {
   perl = if perlSupport then perl else null;
   python = if pythonSupport then python else null;
   jdk = if javaSupport then jdk else null;
-}
\ No newline at end of file
+}