1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 15:41:40 +00:00

GNU Coreutils 8.1.

svn path=/nixpkgs/branches/stdenv-updates/; revision=18476
This commit is contained in:
Ludovic Courtès 2009-11-19 22:46:45 +00:00
parent 640db0323d
commit 40e564c87c

View file

@ -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";