nixpkgs/pkgs/applications/misc/hello/default.nix

26 lines
743 B
Nix
Raw Normal View History

2017-11-04 23:01:20 +01:00
{ stdenv, fetchipfs }:
stdenv.mkDerivation rec {
2014-11-16 22:41:38 +01:00
name = "hello-2.10";
2017-11-04 23:01:20 +01:00
src = fetchipfs {
url = "https://ftp.gnu.org/gnu/hello/hello-2.10.tar.gz";
ipfs = "QmWyj65ak3wd8kG2EvPCXKd6Tij15m4SwJz6g2yG2rQ7w8";
sha256 = "1im1gglfm4k10bh4mdaqzmx3lm3kivnsmxrvl6vyvmfqqzljq75l";
};
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 = stdenv.lib.licenses.gpl3Plus;
2015-01-13 22:33:24 +01:00
maintainers = [ stdenv.lib.maintainers.eelco ];
platforms = stdenv.lib.platforms.all;
};
}