25 lines
707 B
Nix
25 lines
707 B
Nix
{ lib, fetchzip, buildDunePackage
|
|
, cppo, ppxfind, ppx_tools, ppx_derivers, result, ounit, ocaml-migrate-parsetree
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ppx_deriving";
|
|
version = "4.4";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/ocaml-ppx/ppx_deriving/archive/v${version}.tar.gz";
|
|
sha256 = "0b2gaxlh54pcz3b4891yd143nx852mwggcy0yhq8g85dl3iisxzq";
|
|
};
|
|
|
|
buildInputs = [ ppxfind cppo ounit ];
|
|
propagatedBuildInputs = [ ocaml-migrate-parsetree ppx_derivers ppx_tools result ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "deriving is a library simplifying type-driven code generation on OCaml >=4.02.";
|
|
maintainers = [ maintainers.maurer ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|