GNU Coreutils 8.4.

svn path=/nixpkgs/branches/stdenv-updates/; revision=19429
This commit is contained in:
Ludovic Courtès 2010-01-14 10:09:39 +00:00
parent 33618e21c5
commit 951ec3ce51

View file

@ -1,11 +1,11 @@
{stdenv, fetchurl, aclSupport ? false, acl, perl, gmp}:
stdenv.mkDerivation rec {
name = "coreutils-8.3";
name = "coreutils-8.4";
src = fetchurl {
url = "mirror://gnu/coreutils/${name}.tar.gz";
sha256 = "0lghmjm6mmzxha7hdn2zz2dg6gsd4gqydp720p0gagr21q7lz9hh";
sha256 = "0zq11lykc7hfs9nsdnb8gqk354l82hswqj38607mvwj3b0zqvc4b";
};
buildInputs = [ perl gmp ] ++ stdenv.lib.optional aclSupport acl;