mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
930b1c06b1
* 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
25 lines
435 B
Nix
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";
|
|
};
|
|
}
|