nixpkgs/pkgs/development/ocaml-modules/ppxlib/default.nix

35 lines
816 B
Nix
Raw Normal View History

2018-09-05 16:11:47 +00:00
{ stdenv, fetchFromGitHub, ocaml, findlib, dune
2018-07-05 19:40:30 +00:00
, ocaml-compiler-libs, ocaml-migrate-parsetree, ppx_derivers, stdio
}:
stdenv.mkDerivation rec {
version = "0.3.1";
2018-07-05 19:40:30 +00:00
name = "ocaml${ocaml.version}-ppxlib-${version}";
src = fetchFromGitHub {
owner = "ocaml-ppx";
repo = "ppxlib";
rev = version;
sha256 = "0qpjl84x8abq9zivifb0k8ld7fa1lrhkbajmmccvfv06ja3as1v4";
2018-07-05 19:40:30 +00:00
};
2018-09-05 16:11:47 +00:00
buildInputs = [ ocaml findlib dune ];
2018-07-05 19:40:30 +00:00
propagatedBuildInputs = [
ocaml-compiler-libs ocaml-migrate-parsetree ppx_derivers stdio
];
2018-09-05 16:11:47 +00:00
buildPhase = "dune build";
2018-07-05 19:40:30 +00:00
2018-09-05 16:11:47 +00:00
inherit (dune) installPhase;
2018-07-05 19:40:30 +00:00
meta = {
description = "Comprehensive ppx tool set";
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.vbgl ];
inherit (src.meta) homepage;
inherit (ocaml.meta) platforms;
};
}