2017-08-03 18:39:25 +00:00
|
|
|
{ stdenv, buildOcaml, ocaml, fetchzip
|
2017-08-28 09:17:22 +00:00
|
|
|
, cppo, ppx_tools, ppx_derivers, result, ounit, ocaml-migrate-parsetree
|
2017-03-04 05:24:36 +00:00
|
|
|
}:
|
2016-09-13 21:50:18 +00:00
|
|
|
|
2017-08-28 09:17:22 +00:00
|
|
|
let param =
|
|
|
|
if ocaml.version == "4.03.0"
|
|
|
|
then {
|
|
|
|
version = "4.1";
|
|
|
|
sha256 = "0cy9p8d8cbcxvqyyv8fz2z9ypi121zrgaamdlp4ld9f3jnwz7my9";
|
|
|
|
extraPropagatedBuildInputs = [];
|
|
|
|
} else {
|
2017-11-21 23:29:07 +00:00
|
|
|
version = "4.2.1";
|
|
|
|
sha256 = "1yhhjnncbbb7fsif7qplndh01s1xd72dqm8f3jkgx9y4ariqqvf9";
|
2017-08-28 09:17:22 +00:00
|
|
|
extraPropagatedBuildInputs = [ ocaml-migrate-parsetree ppx_derivers ];
|
|
|
|
}; in
|
|
|
|
|
2016-09-13 21:50:18 +00:00
|
|
|
buildOcaml rec {
|
|
|
|
name = "ppx_deriving";
|
2017-08-28 09:17:22 +00:00
|
|
|
inherit (param) version;
|
2016-09-13 21:50:18 +00:00
|
|
|
|
|
|
|
minimumSupportedOcamlVersion = "4.02";
|
|
|
|
|
2017-03-04 05:24:36 +00:00
|
|
|
src = fetchzip {
|
|
|
|
url = "https://github.com/whitequark/${name}/archive/v${version}.tar.gz";
|
2017-08-28 09:17:22 +00:00
|
|
|
inherit (param) sha256;
|
2016-09-13 21:50:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
hasSharedObjects = true;
|
|
|
|
|
|
|
|
buildInputs = [ cppo ounit ];
|
2017-08-28 09:17:22 +00:00
|
|
|
propagatedBuildInputs = param.extraPropagatedBuildInputs ++
|
2016-09-13 21:50:18 +00:00
|
|
|
[ ppx_tools result ];
|
|
|
|
|
|
|
|
installPhase = "OCAMLPATH=$OCAMLPATH:`ocamlfind printconf destdir` make install";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "deriving is a library simplifying type-driven code generation on OCaml >=4.02.";
|
|
|
|
maintainers = [ maintainers.maurer ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|