2008-06-17 16:19:59 +02:00
|
|
|
{stdenv, fetchurl}:
|
2004-11-05 21:54:19 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-02-05 15:13:25 +01:00
|
|
|
name = "hello-2.3x26";
|
2008-06-17 16:19:59 +02:00
|
|
|
|
2004-11-05 21:54:19 +01:00
|
|
|
src = fetchurl {
|
2008-06-17 16:19:59 +02:00
|
|
|
url = mirror://gnu/hello/hello-2.3.tar.bz2;
|
|
|
|
sha256 = "0c7vijq8y68bpr7g6dh1gny0bff8qq81vnp4ch8pjzvg56wb3js1";
|
|
|
|
};
|
2010-02-05 15:13:25 +01:00
|
|
|
|
2008-06-17 16:19:59 +02:00
|
|
|
meta = {
|
|
|
|
description = "A program that produces a familiar, friendly greeting";
|
|
|
|
longDescription = ''
|
|
|
|
GNU Hello is a program that prints "Hello, world!" when you run it.
|
|
|
|
It is fully customizable.
|
|
|
|
'';
|
|
|
|
homepage = http://www.gnu.org/software/hello/manual/;
|
|
|
|
license = "GPLv3+";
|
2004-11-05 21:54:19 +01:00
|
|
|
};
|
|
|
|
}
|