* bash 2.0, findutils 4.2.28.

* Some Nix expression simplifications.  Sense and simplicity!

svn path=/nixpkgs/trunk/; revision=6836
This commit is contained in:
Eelco Dolstra
2006-10-24 23:05:12 +00:00
parent f86c11815f
commit 4d3059721d
4 changed files with 24 additions and 32 deletions

View File

@@ -1,20 +1,16 @@
{stdenv, fetchurl}:
stdenv.mkDerivation ({
name = "bash-3.1";
stdenv.mkDerivation {
name = "bash-3.2";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/bash-3.1.tar.gz;
md5 = "ef5304c4b22aaa5088972c792ed45d72";
url = http://ftp.gnu.org/pub/gnu/bash/bash-3.2.tar.gz;
md5 = "00bfa16d58e034e3c2aa27f390390d30";
};
patches = [./winsize.patch];
meta = {
description = "GNU Bourne-Again Shell, the de facto standard shell on Linux";
};
}
// (if stdenv ? isDietLibC then {
patches = [./winsize.patch];
} else {})
)