nixpkgs/pkgs/development/ocaml-modules/repr/ppx.nix
Vincent Laporte 930b1c06b1
ocamlPackages.base64: 3.5.0 → 3.5.1 (#218580)
* ocamlPackages.otr: use Dune 3

* ocamlPackages.h2: use Dune 3

* ocamlPackages.index: use Dune 3

* ocamlPackages.progress: use Dune 3

* ocamlPackages.repr: use Dune 3

* ocamlPackages.emile: use Dune 3

* ocamlPackages.bistro: use Dune 3

* ocamlPackages.base64: 3.5.0 → 3.5.1
2023-02-27 09:14:03 -03:00

25 lines
435 B
Nix

{ lib, buildDunePackage, ppx_deriving, ppxlib, repr, alcotest, hex }:
buildDunePackage {
pname = "ppx_repr";
inherit (repr) src version strictDeps;
duneVersion = "3";
propagatedBuildInputs = [
ppx_deriving
ppxlib
repr
];
doCheck = false; # tests fail with ppxlib >= 0.23.0
checkInputs = [
alcotest
hex
];
meta = repr.meta // {
description = "PPX deriver for type representations";
};
}