nixpkgs/pkgs/applications/misc/hello/ex-2/default.nix
Shea Levy 6cfe0b0a9e Important version bump
svn path=/nixpkgs/trunk/; revision=26657
2011-04-01 14:57:36 +00:00

28 lines
654 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "hello-2.7";
x = 108;
src = fetchurl {
url = "mirror://gnu/hello/${name}.tar.gz";
sha256 = "1h17p5lgg47lbr2cnp4qqkr0q0f0rpffyzmvs7bvc6vdrxdknngx";
};
doCheck = true;
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+";
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = stdenv.lib.platforms.all;
};
}