544cb9cb83
svn path=/nixpkgs/trunk/; revision=9201
11 lines
218 B
Nix
11 lines
218 B
Nix
{stdenv, fetchurl, perl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "hello-2.1.1";
|
|
src = fetchurl {
|
|
url = mirror://gnu/hello/hello-2.1.1.tar.gz;
|
|
md5 = "70c9ccf9fac07f762c24f2df2290784d";
|
|
};
|
|
buildInputs = [perl];
|
|
}
|