1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 09:02:46 +00:00
nixpkgs/pkgs/tools/misc/coreutils/default.nix
2007-10-11 03:41:29 +00:00

11 lines
262 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "coreutils-6.9";
src = fetchurl {
url = mirror://gnu/coreutils/coreutils-6.9.tar.bz2;
sha256 = "1c4p2kiy4m024qcl1przvphy8vhivf8jvclq6bjm1pjps5d8khl9";
};
patches = [ ./gnulib-futimens.patch ] ;
}