mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 13:03:34 +00:00
8e2b735ee0
ocamlPackages.dolmen: 0.9 → 0.10
21 lines
380 B
Nix
21 lines
380 B
Nix
{ buildDunePackage, dolmen, dolmen_type
|
|
, gen
|
|
, pp_loc
|
|
, mdx
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "dolmen_loop";
|
|
inherit (dolmen) src version;
|
|
|
|
propagatedBuildInputs = [ dolmen dolmen_type gen pp_loc ];
|
|
|
|
doCheck = true;
|
|
nativeCheckInputs = [ mdx.bin ];
|
|
checkInputs = [ mdx ];
|
|
|
|
meta = dolmen.meta // {
|
|
description = "Tool library for automated deduction tools";
|
|
};
|
|
}
|