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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, runCommand
, stdenv
, fetchurl
, nixos
, testers
, hello
}:
stdenv.mkDerivation (self: {
pname = "hello";
version = "2.12";
src = fetchurl {
url = "mirror://gnu/hello/${self.pname}-${self.version}.tar.gz";
sha256 = "1ayhp9v4m4rdhjmnl2bq3cibrbqqkgjbl3s7yk2nhlh8vj3ay16g";
};
doCheck = true;
passthru.tests = {
version = testers.testVersion { package = hello; };
invariant-under-noXlibs =
testers.testEqualDerivation
"hello must not be rebuilt when environment.noXlibs is set."
hello
(nixos { environment.noXlibs = true; }).pkgs.hello;
};
passthru.tests.run = runCommand "hello-test-run" {
nativeBuildInputs = [ self ];
} ''
diff -U3 --color=auto <(hello) <(echo 'Hello, world!')
touch $out
'';
meta = with lib; {
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 = "https://www.gnu.org/software/hello/manual/";
changelog = "https://git.savannah.gnu.org/cgit/hello.git/plain/NEWS?h=v${self.version}";
2018-05-22 17:25:09 +00:00
license = licenses.gpl3Plus;
maintainers = [ maintainers.eelco ];
platforms = platforms.all;
};
})