nixpkgs/pkgs/development/tools/ocaml/cppo/default.nix

57 lines
1.4 KiB
Nix
Raw Normal View History

2018-09-05 18:11:47 +02:00
{ stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, dune }:
2014-06-25 10:25:14 +02:00
let
pname = "cppo";
webpage = "https://github.com/ocaml-community/${pname}";
2014-06-25 10:25:14 +02:00
in
2017-04-28 18:10:41 +02:00
assert stdenv.lib.versionAtLeast ocaml.version "3.12";
2014-06-25 10:25:14 +02:00
let param =
2020-04-02 06:55:38 +02:00
if stdenv.lib.versionAtLeast ocaml.version "4.02" then
(if stdenv.lib.versionAtLeast ocaml.version "4.03" then {
version = "1.6.6";
sha256 = "1smcc0l6fh2n0y6bp96c69j5nw755jja99w0b206wx3yb2m4w2hs";
} else {
version = "1.6.5";
sha256 = "03c0amszy28shinvz61hm340jz446zz5763a1pdqlza36kwcj0p0";
2020-04-02 06:55:38 +02:00
}) // {
2018-09-05 18:11:47 +02:00
buildInputs = [ dune ];
extra = {
2018-09-05 18:11:47 +02:00
inherit (dune) installPhase;
};
} else {
version = "1.5.0";
sha256 = "1xqldjz9risndnabvadw41fdbi5sa2hl4fnqls7j9xfbby1izbg8";
extra = {
createFindlibDestdir = true;
makeFlags = [ "PREFIX=$(out)" ];
preBuild = ''
mkdir $out/bin
'';
};
}
; in
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation ({
name = "${pname}-${param.version}";
2014-06-25 10:25:14 +02:00
2016-05-22 17:22:25 +02:00
src = fetchFromGitHub {
owner = "mjambon";
2016-05-22 17:22:25 +02:00
repo = pname;
rev = "v${param.version}";
inherit (param) sha256;
2014-06-25 10:25:14 +02:00
};
buildInputs = [ ocaml findlib ocamlbuild ] ++ (param.buildInputs or []);
2014-06-25 10:25:14 +02:00
meta = with stdenv.lib; {
2014-06-25 10:25:14 +02:00
description = "The C preprocessor for OCaml";
longDescription = ''
Cppo is an equivalent of the C preprocessor targeted at the OCaml language and its variants.
'';
2019-09-09 01:38:31 +02:00
homepage = webpage;
maintainers = [ maintainers.vbgl ];
license = licenses.bsd3;
2014-06-25 10:25:14 +02:00
};
} // param.extra)