From 40e564c87c69ff193d64ed3ac8de5deb47c7b664 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 19 Nov 2009 22:46:45 +0000 Subject: [PATCH] GNU Coreutils 8.1. svn path=/nixpkgs/branches/stdenv-updates/; revision=18476 --- pkgs/tools/misc/coreutils/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix index d1cccfa71960..e6ca5105cbea 100644 --- a/pkgs/tools/misc/coreutils/default.nix +++ b/pkgs/tools/misc/coreutils/default.nix @@ -1,15 +1,17 @@ {stdenv, fetchurl, aclSupport ? false, acl}: stdenv.mkDerivation rec { - name = "coreutils-7.6"; + name = "coreutils-8.1"; src = fetchurl { url = "mirror://gnu/coreutils/${name}.tar.gz"; - sha256 = "1m153jmnrg9v4x6qiw7azd3cjms13s32yihbzb7zi9bw8a5zx6qx"; + sha256 = "1c68q4c4fg6x22ba2p8xb0ddn4xdl847np2g33h63bgj9pdav8ay"; }; buildInputs = stdenv.lib.optional aclSupport acl; + doCheck = true; + meta = { homepage = http://www.gnu.org/software/coreutils/; description = "The basic file, shell and text manipulation utilities of the GNU operating system";