nixpkgs/pkgs/applications/misc/hello/ex-2/default.nix
Eelco Dolstra b0376d16a2 * Updated GNU hello to 2.5. This also gets rid of the unintentional
"hello-2.3x26" commit.

svn path=/nixpkgs/trunk/; revision=19877
2010-02-09 10:41:39 +00:00

21 lines
529 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "hello-2.5";
src = fetchurl {
url = "mirror://gnu/hello/${name}.tar.gz";
sha256 = "0in467phypnis2ify1gkmvc5l2fxyz3s4xss7g74gwk279ylm4r2";
};
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+";
};
}