summary refs log tree commit diff
path: root/pkgs/shells/bash
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2006-02-19 13:27:56 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2006-02-19 13:27:56 +0000
commit722a69f93f76e6c3bac236b9ea10f7f4ae6e3eb1 (patch)
tree5070c3a5acdc68f9eacd509ff74df66e717504e3 /pkgs/shells/bash
parent947c09a4fd9bd2e54cb7a3c74efa2597651c1ee4 (diff)
downloadnixlib-722a69f93f76e6c3bac236b9ea10f7f4ae6e3eb1.tar
nixlib-722a69f93f76e6c3bac236b9ea10f7f4ae6e3eb1.tar.gz
nixlib-722a69f93f76e6c3bac236b9ea10f7f4ae6e3eb1.tar.bz2
nixlib-722a69f93f76e6c3bac236b9ea10f7f4ae6e3eb1.tar.lz
nixlib-722a69f93f76e6c3bac236b9ea10f7f4ae6e3eb1.tar.xz
nixlib-722a69f93f76e6c3bac236b9ea10f7f4ae6e3eb1.tar.zst
nixlib-722a69f93f76e6c3bac236b9ea10f7f4ae6e3eb1.zip
update bash to 3.1
svn path=/nixpkgs/trunk/; revision=4859
Diffstat (limited to 'pkgs/shells/bash')
-rw-r--r--pkgs/shells/bash/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/bash/default.nix b/pkgs/shells/bash/default.nix
index f7a70f9337ec..a4aa7abaab5b 100644
--- a/pkgs/shells/bash/default.nix
+++ b/pkgs/shells/bash/default.nix
@@ -1,10 +1,10 @@
 {stdenv, fetchurl}:
 
 stdenv.mkDerivation {
-  name = "bash-3.0";
+  name = "bash-3.1";
   builder = ./builder.sh;
   src = fetchurl {
-    url = http://nix.cs.uu.nl/dist/tarballs/bash-3.0.tar.gz;
-    md5 = "26c4d642e29b3533d8d754995bc277b3";
+    url = ftp://ftp.nluug.nl/pub/gnu/bash/bash-3.1.tar.gz;
+    md5 = "ef5304c4b22aaa5088972c792ed45d72";
   };
 }