lol
1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "hello-2.10";
5
6 src = fetchurl {
7 url = "mirror://gnu/hello/${name}.tar.gz";
8 sha256 = "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i";
9 };
10
11 doCheck = true;
12
13 meta = {
14 description = "A program that produces a familiar, friendly greeting";
15 longDescription = ''
16 GNU Hello is a program that prints "Hello, world!" when you run it.
17 It is fully customizable.
18 '';
19 homepage = http://www.gnu.org/software/hello/manual/;
20 license = stdenv.lib.licenses.gpl3Plus;
21 maintainers = [ stdenv.lib.maintainers.eelco ];
22 platforms = stdenv.lib.platforms.all;
23 };
24}