nixpkgs/pkgs/development/ocaml-modules/ff/pbt.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
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.
2023-01-21 12:00:00 +00:00

24 lines
404 B
Nix

{ lib, buildDunePackage, zarith, ff-sig, alcotest }:
buildDunePackage {
pname = "ff-pbt";
inherit (ff-sig) version src;
minimalOCamlVersion = "4.08";
nativeCheckInputs = [
alcotest
];
doCheck = true;
propagatedBuildInputs = [
zarith
ff-sig
];
meta = ff-sig.meta // {
description = "Property based testing library for finite fields over the package ff-sig";
};
}