GNU Coreutils 8.2.

svn path=/nixpkgs/branches/stdenv-updates/; revision=18906
This commit is contained in:
Ludovic Courtès 2009-12-11 20:05:54 +00:00
parent 61a6bdad88
commit ef0cd29eb0

View File

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