* Example 2.
svn path=/nixpkgs/trunk/; revision=1703
This commit is contained in:
parent
431d07a330
commit
a44af44555
10
pkgs/applications/misc/hello/ex-2/default.nix
Normal file
10
pkgs/applications/misc/hello/ex-2/default.nix
Normal 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];
|
||||
}
|
Loading…
Reference in New Issue
Block a user