2010-02-09 11:41:39 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2004-11-05 21:54:19 +01:00
|
|
|
|
2010-02-09 11:41:39 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-07-09 10:06:36 +02:00
|
|
|
name = "hello-2.8";
|
2010-11-29 17:03:36 +01:00
|
|
|
|
2004-11-05 21:54:19 +01:00
|
|
|
src = fetchurl {
|
2010-02-09 11:41:39 +01:00
|
|
|
url = "mirror://gnu/hello/${name}.tar.gz";
|
2012-07-09 10:06:36 +02:00
|
|
|
sha256 = "0wqd8sjmxfskrflaxywc7gqw7sfawrfvdxd9skxawzfgyy0pzdz6";
|
2008-06-17 16:19:59 +02:00
|
|
|
};
|
2010-02-05 15:13:25 +01:00
|
|
|
|
2010-05-10 16:30:39 +02:00
|
|
|
doCheck = true;
|
|
|
|
|
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+";
|
2010-05-10 16:30:39 +02:00
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2004-11-05 21:54:19 +01:00
|
|
|
};
|
|
|
|
}
|