23b612e36f
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
13 lines
260 B
Nix
13 lines
260 B
Nix
{ 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";
|
|
};
|
|
}
|