ocamlPackages.ppxfind: init at 1.2

This commit is contained in:
Vincent Laporte 2018-12-17 21:39:33 +00:00 committed by Vincent Laporte
parent ffe4a9a863
commit d7f08cd90f
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ lib, buildDunePackage, fetchurl, ocaml-migrate-parsetree }:
buildDunePackage rec {
pname = "ppxfind";
version = "1.2";
src = fetchurl {
url = "https://github.com/diml/ppxfind/releases/download/${version}/ppxfind-${version}.tbz";
sha256 = "1687jbgii5w5dvvid3ri2cx006ysv0rrspn8dz8x7ma8615whz2h";
};
minimumOCamlVersion = "4.03";
buildInputs = [ ocaml-migrate-parsetree ];
meta = {
homepage = "https://github.com/diml/ppxfind";
description = "ocamlfind ppx tool";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.vbgl ];
};
}

View file

@ -580,6 +580,8 @@ let
piqi = callPackage ../development/ocaml-modules/piqi { };
piqi-ocaml = callPackage ../development/ocaml-modules/piqi-ocaml { };
ppxfind = callPackage ../development/ocaml-modules/ppxfind { };
ppxlib = callPackage ../development/ocaml-modules/ppxlib { };
psmt2-frontend = callPackage ../development/ocaml-modules/psmt2-frontend { };