nixpkgs/pkgs/tools/misc/coreutils/default.nix
Eelco Dolstra 544cb9cb83 * Rewrite all URLs to GNU mirrors to mirror://gnu/.
svn path=/nixpkgs/trunk/; revision=9201
2007-08-27 13:42:00 +00:00

10 lines
220 B
Nix

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