summary refs log tree commit diff
path: root/pkgs/applications/misc/hello/ex-2/default.nix
blob: 62b0059c7ac4bfb3bcabd13f252a3de71dabac08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "hello-2.6";

  x = 108;
  
  src = fetchurl {
    url = "mirror://gnu/hello/${name}.tar.gz";
    sha256 = "1h6fjkkwr7kxv0rl5l61ya0b49imzfaspy7jk9jas1fil31sjykl";
  };

  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;
  };
}