summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils/default.nix
blob: fb55325dcb7966c4868e1b936a60a7a529949946 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl, aclSupport ? false, acl}:

stdenv.mkDerivation {
  name = "coreutils-6.12";
  
  src = fetchurl {
    url = mirror://gnu/coreutils/coreutils-6.12.tar.gz;
    sha256 = "12pi7i2mxff5jab48pqpwlz2pi0j6sp9p7bgrcl663iiw81zglj9";
  };

  meta = {
    homepage = http://www.gnu.org/software/coreutils/;
    description = "The basic file, shell and text manipulation utilities of the GNU operating system";
  };

  buildInputs = stdenv.lib.optional aclSupport acl;
}