2010-02-09 10:41:39 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2004-11-05 20:54:19 +00:00
|
|
|
|
2010-02-09 10:41:39 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "hello-2.5";
|
2008-06-17 15:19:59 +01:00
|
|
|
|
2004-11-05 20:54:19 +00:00
|
|
|
src = fetchurl {
|
2010-02-09 10:41:39 +00:00
|
|
|
url = "mirror://gnu/hello/${name}.tar.gz";
|
|
|
|
sha256 = "0in467phypnis2ify1gkmvc5l2fxyz3s4xss7g74gwk279ylm4r2";
|
2008-06-17 15:19:59 +01:00
|
|
|
};
|
2010-02-05 14:13:25 +00:00
|
|
|
|
2008-06-17 15:19:59 +01: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 20:54:19 +00:00
|
|
|
};
|
|
|
|
}
|