* Bash updated to 3.0.

svn path=/nixpkgs/trunk/; revision=1439
This commit is contained in:
Eelco Dolstra 2004-09-18 17:08:16 +00:00
parent 1e323657e5
commit c443a170fb
2 changed files with 5 additions and 4 deletions

View file

@ -1,3 +1,4 @@
. $stdenv/setup
genericBuild
(cd $out/bin && ln -s bash sh)
cd $out/bin
ln -s bash sh

View file

@ -1,10 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "bash-2.05b";
name = "bash-3.0";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nl.net/pub/gnu/bash/bash-2.05b.tar.gz;
md5 = "5238251b4926d778dfe162f6ce729733";
url = ftp://ftp.nluug.nl/pub/gnu/bash/bash-3.0.tar.gz;
md5 = "26c4d642e29b3533d8d754995bc277b3";
};
}