f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
14 lines
281 B
Nix
14 lines
281 B
Nix
{ ocamlPackages }:
|
|
|
|
with ocamlPackages; buildDunePackage {
|
|
pname = "msat-bin";
|
|
|
|
inherit (msat) version src;
|
|
|
|
buildInputs = [ camlzip containers msat ];
|
|
|
|
meta = msat.meta // {
|
|
description = "SAT solver binary based on the msat library";
|
|
mainProgram = "msat";
|
|
};
|
|
}
|