mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
ocamlPackages.ppx_irmin: init at 2.1.0
This commit is contained in:
parent
5ed10dc909
commit
4ef5c64226
14
pkgs/development/ocaml-modules/irmin/ppx.nix
Normal file
14
pkgs/development/ocaml-modules/irmin/ppx.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ lib, buildDunePackage, ppxlib, ocaml-syntax-shims, irmin }:
|
||||
|
||||
buildDunePackage {
|
||||
pname = "ppx_irmin";
|
||||
|
||||
inherit (irmin) version src minimumOCamlVersion;
|
||||
|
||||
buildInputs = [ ocaml-syntax-shims ];
|
||||
propagatedBuildInputs = [ ppxlib ];
|
||||
|
||||
meta = irmin.meta // {
|
||||
description = "PPX deriver for Irmin generics";
|
||||
};
|
||||
}
|
@ -806,6 +806,10 @@ let
|
||||
|
||||
ppx_import = callPackage ../development/ocaml-modules/ppx_import {};
|
||||
|
||||
ppx_irmin = callPackage ../development/ocaml-modules/irmin/ppx.nix {
|
||||
ppxlib = ppxlib.override { version = "0.12.0"; };
|
||||
};
|
||||
|
||||
ppx_sqlexpr = callPackage ../development/ocaml-modules/sqlexpr/ppx.nix {};
|
||||
|
||||
ppx_tools =
|
||||
|
Loading…
Reference in New Issue
Block a user