Author: ludo
Date: Fri Oct 14 21:56:16 2011
New Revision: 29848
URL: https://nixos.org/websvn/nix/?rev=29848&sc=1

Log:
GNU Coreutils 8.14.

Modified:
   nixpkgs/branches/stdenv-updates/pkgs/tools/misc/coreutils/default.nix

Modified: nixpkgs/branches/stdenv-updates/pkgs/tools/misc/coreutils/default.nix
==============================================================================
--- nixpkgs/branches/stdenv-updates/pkgs/tools/misc/coreutils/default.nix       
Fri Oct 14 21:56:11 2011        (r29847)
+++ nixpkgs/branches/stdenv-updates/pkgs/tools/misc/coreutils/default.nix       
Fri Oct 14 21:56:16 2011        (r29848)
@@ -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 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
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to