summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2011-10-14 21:56:16 +0000
committerLudovic Courtès <ludo@gnu.org>2011-10-14 21:56:16 +0000
commit5d5b8932231d2ae59fc9d7ea3142d1f2f75c9cfb (patch)
tree70c084e9fed34005ceeaa34af9f84d96d7b759c3 /pkgs/tools/misc/coreutils
parente2e7a6f1cefdc4af7b213256f7fa153d2d24087f (diff)
downloadnixlib-5d5b8932231d2ae59fc9d7ea3142d1f2f75c9cfb.tar
nixlib-5d5b8932231d2ae59fc9d7ea3142d1f2f75c9cfb.tar.gz
nixlib-5d5b8932231d2ae59fc9d7ea3142d1f2f75c9cfb.tar.bz2
nixlib-5d5b8932231d2ae59fc9d7ea3142d1f2f75c9cfb.tar.lz
nixlib-5d5b8932231d2ae59fc9d7ea3142d1f2f75c9cfb.tar.xz
nixlib-5d5b8932231d2ae59fc9d7ea3142d1f2f75c9cfb.tar.zst
nixlib-5d5b8932231d2ae59fc9d7ea3142d1f2f75c9cfb.zip
GNU Coreutils 8.14.
svn path=/nixpkgs/branches/stdenv-updates/; revision=29848
Diffstat (limited to 'pkgs/tools/misc/coreutils')
-rw-r--r--pkgs/tools/misc/coreutils/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index f21f97a18a25..26c4d0fbdce7 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, perl, xz, gmp ? null
+{ stdenv, fetchurl, perl, gmp ? null
 , aclSupport ? false, acl ? null
 , selinuxSupport? false, libselinux ? null, libsepol ? null }:
 
@@ -6,14 +6,14 @@ assert aclSupport -> acl != null;
 assert selinuxSupport -> ( (libselinux != null) && (libsepol != null) );
 
 stdenv.mkDerivation (rec {
-  name = "coreutils-8.13";
+  name = "coreutils-8.14";
 
   src = fetchurl {
     url = "mirror://gnu/coreutils/${name}.tar.xz";
-    sha256 = "06xc4jfkr5h8pc6wq14ncihapf5chcwvvcjvpwkby1ngw0xbxz8b";
+    sha256 = "0bdh31fvd0ng2sqrrbz0a4yy084hmj76pbljksqyv4ljq4bhh4hd";
   };
 
-  buildNativeInputs = [ perl xz ];
+  buildNativeInputs = [ perl ];
   buildInputs = [ gmp ]
     ++ stdenv.lib.optional aclSupport acl
     ++ stdenv.lib.optional selinuxSupport libselinux