nixpkgs/pkgs/tools/misc/coreutils/default.nix
Marc Weber 9e82d3dd08 version bump to coreutils-7.1
7.1 adds the new flag iflag=fullblock!

This line without fullblock copies a different amount of data each
time !
cat /dev/zero | dd iflag=fullblock bs=1M count=1000 of=/dev/null;

svn path=/nixpkgs/trunk/; revision=14547
2009-03-16 00:20:34 +00:00

19 lines
550 B
Nix

{stdenv, fetchurl, aclSupport ? false, acl}:
stdenv.mkDerivation {
name = "coreutils-6.12";
src = fetchurl {
url = mirror://gnu/coreutils/coreutils-7.1.tar.gz;
sha256 = "019a7kccrdnim2xigwsgc8dhiw0hb1y9q4344qs5z24sl6gv2g41";
};
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;
# Older kernels: patches = ./setting-time-backward-compatibility.patch;
}