about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/science/logic/msat/default.nix
blob: dc2b1a2211993878b822bfaa75cbf7bcbb5bb739 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ 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";
  };
}