rune: fix build on darwin
[NixPkgs.git] / pkgs / development / tools / gpp / default.nix
blob9e49b0c0284fd873735d13cce4751e1130b9d5a9
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation {
4   pname = "gpp";
5   version = "2.25";
7   src = fetchFromGitHub {
8     owner = "logological";
9     repo = "gpp";
10     rev = "96c5dd8905384ea188f380f51d24cbd7fd58f642";
11     sha256 = "0bvhnx3yfhbfiqqhhz6k2a596ls5rval7ykbp3jl5b6062xj861b";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   installCheckPhase = "$out/bin/gpp --help";
17   doInstallCheck = true;
19   meta = with lib; {
20     description = "General-purpose preprocessor with customizable syntax";
21     homepage = "https://logological.org/gpp";
22     license = licenses.lgpl3;
23     maintainers = with maintainers; [ nmattia ];
24     platforms = with platforms; linux ++ darwin;
25   };