GNU Coreutils 8.2.

svn path=/nixpkgs/branches/stdenv-updates/; revision=18906

+2 -2
+2 -2
pkgs/tools/misc/coreutils/default.nix
··· 1 1 {stdenv, fetchurl, aclSupport ? false, acl, perl, gmp}: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "coreutils-8.1"; 4 + name = "coreutils-8.2"; 5 5 6 6 src = fetchurl { 7 7 url = "mirror://gnu/coreutils/${name}.tar.gz"; 8 - sha256 = "1c68q4c4fg6x22ba2p8xb0ddn4xdl847np2g33h63bgj9pdav8ay"; 8 + sha256 = "0hagmpqm3wyx0hhw7i0mswary5w8flrk2vxhqfgfskam2rfhbhyk"; 9 9 }; 10 10 11 11 buildInputs = [ perl gmp ] ++ stdenv.lib.optional aclSupport acl;