nixpkgs/pkgs/tools/misc/coreutils/coreutils-6.3.nix
2006-10-02 21:43:27 +00:00

10 lines
211 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "coreutils-6.3";
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/coreutils/coreutils-6.3.tar.bz2;
md5 = "065e9662c5aa2694693910ca9e6c9ec8";
};
}