* Example 2.

svn path=/nixpkgs/trunk/; revision=1703
This commit is contained in:
Eelco Dolstra 2004-11-05 20:54:19 +00:00
parent 431d07a330
commit a44af44555

View File

@ -0,0 +1,10 @@
{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];
}