c72e9d5034
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ocaml4.06.1-ppxlib/versions
35 lines
816 B
Nix
35 lines
816 B
Nix
{ stdenv, fetchFromGitHub, ocaml, findlib, dune
|
|
, ocaml-compiler-libs, ocaml-migrate-parsetree, ppx_derivers, stdio
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.3.1";
|
|
name = "ocaml${ocaml.version}-ppxlib-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ocaml-ppx";
|
|
repo = "ppxlib";
|
|
rev = version;
|
|
sha256 = "0qpjl84x8abq9zivifb0k8ld7fa1lrhkbajmmccvfv06ja3as1v4";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib dune ];
|
|
|
|
propagatedBuildInputs = [
|
|
ocaml-compiler-libs ocaml-migrate-parsetree ppx_derivers stdio
|
|
];
|
|
|
|
buildPhase = "dune build";
|
|
|
|
inherit (dune) installPhase;
|
|
|
|
meta = {
|
|
description = "Comprehensive ppx tool set";
|
|
license = stdenv.lib.licenses.mit;
|
|
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
|
inherit (src.meta) homepage;
|
|
inherit (ocaml.meta) platforms;
|
|
};
|
|
|
|
}
|