2024-01-25 14:12:00 +00:00
|
|
|
{ lib, 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";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "msat";
|
2024-01-25 14:12:00 +00:00
|
|
|
};
|
|
|
|
}
|