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

35 lines
816 B
Nix
Raw Normal View History

2018-09-05 17:11:47 +01:00
{ stdenv, fetchFromGitHub, ocaml, findlib, dune
2018-07-05 20:40:30 +01:00
, ocaml-compiler-libs, ocaml-migrate-parsetree, ppx_derivers, stdio
}:
stdenv.mkDerivation rec {
version = "0.3.0";
name = "ocaml${ocaml.version}-ppxlib-${version}";
src = fetchFromGitHub {
owner = "ocaml-ppx";
repo = "ppxlib";
rev = version;
sha256 = "0csp49jh7zgjnqh46mxbf322whlbmgy7v1a12nvxh97qg6i5fvsy";
};
2018-09-05 17:11:47 +01:00
buildInputs = [ ocaml findlib dune ];
2018-07-05 20:40:30 +01:00
propagatedBuildInputs = [
ocaml-compiler-libs ocaml-migrate-parsetree ppx_derivers stdio
];
2018-09-05 17:11:47 +01:00
buildPhase = "dune build";
2018-07-05 20:40:30 +01:00
2018-09-05 17:11:47 +01:00
inherit (dune) installPhase;
2018-07-05 20:40:30 +01: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;
};
}