forked from mirrors/nixpkgs
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
23 lines
525 B
Nix
23 lines
525 B
Nix
{ lib, buildDunePackage, ocaml
|
|
, bitstring, ppxlib
|
|
, ounit
|
|
}:
|
|
|
|
if lib.versionOlder ppxlib.version "0.18.0"
|
|
then throw "ppx_bitstring is not available with ppxlib-${ppxlib.version}"
|
|
else
|
|
|
|
buildDunePackage rec {
|
|
pname = "ppx_bitstring";
|
|
inherit (bitstring) version useDune2 src;
|
|
|
|
buildInputs = [ bitstring ppxlib ];
|
|
|
|
doCheck = lib.versionAtLeast ocaml.version "4.08";
|
|
nativeCheckInputs = [ ounit ];
|
|
|
|
meta = bitstring.meta // {
|
|
description = "Bitstrings and bitstring matching for OCaml - PPX extension";
|
|
};
|
|
}
|