From f48dfa1e25b3e04d0e9f07783a1b0c4643980771 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 2 Apr 2009 12:33:03 +0000 Subject: [PATCH] GNU Coreutils 7.2. svn path=/nixpkgs/branches/stdenv-updates/; revision=14833 --- pkgs/tools/misc/coreutils/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix index 2b7866a83cc8..5cff1d5712ee 100644 --- a/pkgs/tools/misc/coreutils/default.nix +++ b/pkgs/tools/misc/coreutils/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, aclSupport ? false, acl}: stdenv.mkDerivation rec { - name = "coreutils-7.1"; + name = "coreutils-7.2"; src = fetchurl { url = "mirror://gnu/coreutils/${name}.tar.gz"; - sha256 = "019a7kccrdnim2xigwsgc8dhiw0hb1y9q4344qs5z24sl6gv2g41"; + sha256 = "1cpx66kwcg5w78by8i27wb24j0flz2ivv9fqmd4av8z5jbnbyxyx"; }; buildInputs = stdenv.lib.optional aclSupport acl;