mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
15 lines
321 B
Nix
15 lines
321 B
Nix
{ 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";
|
|
};
|
|
}
|