2003-11-27 13:09:22 +01:00
|
|
|
{stdenv, fetchurl, perl}:
|
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2003-11-27 13:09:22 +01:00
|
|
|
name = "hello-2.1.1";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2007-08-27 15:42:00 +02:00
|
|
|
url = mirror://gnu/hello/hello-2.1.1.tar.gz;
|
2003-11-27 13:09:22 +01:00
|
|
|
md5 = "70c9ccf9fac07f762c24f2df2290784d";
|
|
|
|
};
|
2004-11-04 21:19:42 +01:00
|
|
|
inherit perl;
|
2006-10-11 18:45:55 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "GNU Hello, a classic computer science tool";
|
2008-01-30 20:49:42 +01:00
|
|
|
homepage = http://www.gnu.org/software/hello/;
|
2006-10-11 18:45:55 +02:00
|
|
|
};
|
2003-11-27 13:09:22 +01:00
|
|
|
}
|