* Updated various stdenv packages (grep, gawk, tar, cpio, findutils,

pcre).

svn path=/nixpkgs/branches/stdenv-updates/; revision=9758
This commit is contained in:
Eelco Dolstra
2007-11-19 17:39:19 +00:00
parent 76f78aaf57
commit b37f504680
18 changed files with 38 additions and 112 deletions
+8 -9
View File
@@ -1,14 +1,13 @@
args: with args;
stdenv.mkDerivation ({
name = "pcre-7.1";
stdenv.mkDerivation {
name = "pcre-7.4";
src = fetchurl {
url = ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-7.1.tar.bz2;
sha256 = "0rpkcw07jas3fw6ava3ni5zcrmbncwa8xlsa0lzq6z2iph5510li";
url = ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-7.4.tar.bz2;
sha256 = "1rdks2h5f3p2d71c4jnxaic1c9gmgsfky80djnafcdbdrhzkiyx5";
};
configureFlags =
if unicodeSupport then
"--enable-unicode-properties --enable-shared --disable-static"
else "";
}
// (if unicodeSupport then
{
configureFlags = "--enable-unicode-properties --enable-shared --disable-static";
}
else {}))