204f7dc335
* ocamlPackages.irmin: 2.6.0 -> 2.7.1 https://github.com/mirage/irmin/releases/tag/2.7.1 * ocamlPackages.index: 1.3.1 -> 1.4.0 https://github.com/mirage/index/releases/tag/1.4.0 * ocamlPackages.repr: 0.3.0 -> 0.4.0 https://github.com/mirage/repr/releases/tag/0.4.0 Co-authored-by: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>
23 lines
376 B
Nix
23 lines
376 B
Nix
{ lib, buildDunePackage, ppx_deriving, ppxlib, repr, alcotest, hex }:
|
|
|
|
buildDunePackage {
|
|
pname = "ppx_repr";
|
|
|
|
inherit (repr) src version useDune2;
|
|
|
|
propagatedBuildInputs = [
|
|
ppx_deriving
|
|
ppxlib
|
|
repr
|
|
];
|
|
|
|
doCheck = true;
|
|
checkInputs = [
|
|
alcotest
|
|
hex
|
|
];
|
|
|
|
meta = repr.meta // {
|
|
description = "PPX deriver for type representations";
|
|
};
|
|
}
|