nixpkgs/pkgs/development/ocaml-modules/ppx_import/default.nix
2017-11-26 20:52:17 +00:00

33 lines
811 B
Nix

{stdenv, fetchFromGitHub, buildOcaml, ocaml, opam,
cppo, ppx_tools, ounit, ppx_deriving}:
buildOcaml rec {
name = "ppx_import";
version = "1.4";
minimumSupportedOcamlVersion = "4.02";
src = fetchFromGitHub {
owner = "ocaml-ppx";
repo = "ppx_import";
rev = "v${version}";
sha256 = "14c2lp7r9080c4hsb1y1drbxxx3v44b7ib5wfh3kkh3f1jfsjwbk";
};
buildInputs = [ cppo ounit ppx_deriving opam ];
doCheck = true;
checkTarget = "test";
installPhase = ''
opam-installer --script --prefix=$out ppx_import.install | sh
ln -s $out/lib/ppx_import $out/lib/ocaml/${ocaml.version}/site-lib
'';
meta = with stdenv.lib; {
description = "A syntax extension that allows to pull in types or signatures from other compiled interface files";
license = licenses.mit;
};
}