summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-12-11 20:05:54 +0000
committerLudovic Courtès <ludo@gnu.org>2009-12-11 20:05:54 +0000
commitef0cd29eb0e751af822c3deb4981c2b85d472a94 (patch)
tree9d0f38911dffa8600eda8d3af0282a7f8545ba56 /pkgs/tools/misc/coreutils
parent61a6bdad88d21fa8bfe1a7d33f8eff71db35403f (diff)
downloadnixlib-ef0cd29eb0e751af822c3deb4981c2b85d472a94.tar
nixlib-ef0cd29eb0e751af822c3deb4981c2b85d472a94.tar.gz
nixlib-ef0cd29eb0e751af822c3deb4981c2b85d472a94.tar.bz2
nixlib-ef0cd29eb0e751af822c3deb4981c2b85d472a94.tar.lz
nixlib-ef0cd29eb0e751af822c3deb4981c2b85d472a94.tar.xz
nixlib-ef0cd29eb0e751af822c3deb4981c2b85d472a94.tar.zst
nixlib-ef0cd29eb0e751af822c3deb4981c2b85d472a94.zip
GNU Coreutils 8.2.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18906
Diffstat (limited to 'pkgs/tools/misc/coreutils')
-rw-r--r--pkgs/tools/misc/coreutils/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index 63e423b77936..40d6a90c6a42 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;