nixpkgs/pkgs/applications/misc/hello/ex-2/default.nix
Eelco Dolstra a44af44555 * Example 2.
svn path=/nixpkgs/trunk/; revision=1703
2004-11-05 20:54:19 +00:00

11 lines
232 B
Nix

{stdenv, fetchurl, perl}:
stdenv.mkDerivation {
name = "hello-2.1.1";
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/hello/hello-2.1.1.tar.gz;
md5 = "70c9ccf9fac07f762c24f2df2290784d";
};
buildInputs = [perl];
}