2010-02-09 13:41:39 +03:00
|
|
|
{ stdenv, fetchurl }:
|
2004-11-05 23:54:19 +03:00
|
|
|
|
2010-02-09 13:41:39 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2014-11-17 00:41:38 +03:00
|
|
|
name = "hello-2.10";
|
2010-11-29 19:03:36 +03:00
|
|
|
|
2004-11-05 23:54:19 +03:00
|
|
|
src = fetchurl {
|
2010-02-09 13:41:39 +03:00
|
|
|
url = "mirror://gnu/hello/${name}.tar.gz";
|
2014-11-17 00:41:38 +03:00
|
|
|
sha256 = "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i";
|
2008-06-17 18:19:59 +04:00
|
|
|
};
|
2010-02-05 17:13:25 +03:00
|
|
|
|
2016-08-07 18:17:02 +03:00
|
|
|
doCheck = true;
|
2015-09-17 16:24:32 +03:00
|
|
|
|
2008-06-17 18:19:59 +04: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/;
|
2014-07-27 15:52:11 +04:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2015-01-14 00:33:24 +03:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2010-05-10 18:30:39 +04:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2004-11-05 23:54:19 +03:00
|
|
|
};
|
|
|
|
}
|