From ef0cd29eb0e751af822c3deb4981c2b85d472a94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 11 Dec 2009 20:05:54 +0000 Subject: [PATCH] GNU Coreutils 8.2. svn path=/nixpkgs/branches/stdenv-updates/; revision=18906 --- 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 63e423b7793..40d6a90c6a4 100644 --- a/pkgs/tools/misc/coreutils/default.nix +++ b/pkgs/tools/misc/coreutils/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, aclSupport ? false, acl, perl, gmp}: stdenv.mkDerivation rec { - name = "coreutils-8.1"; + name = "coreutils-8.2"; src = fetchurl { url = "mirror://gnu/coreutils/${name}.tar.gz"; - sha256 = "1c68q4c4fg6x22ba2p8xb0ddn4xdl847np2g33h63bgj9pdav8ay"; + sha256 = "0hagmpqm3wyx0hhw7i0mswary5w8flrk2vxhqfgfskam2rfhbhyk"; }; buildInputs = [ perl gmp ] ++ stdenv.lib.optional aclSupport acl;