ocamlPackages.msat: init at 0.9.1
This commit is contained in:
parent
af93f58391
commit
3ae6216c8e
2 changed files with 38 additions and 0 deletions
36
pkgs/development/ocaml-modules/msat/default.nix
Normal file
36
pkgs/development/ocaml-modules/msat/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ lib, fetchFromGitHub, buildDunePackage
|
||||||
|
, iter
|
||||||
|
, containers
|
||||||
|
, mdx
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "msat";
|
||||||
|
version = "0.9.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Gbury";
|
||||||
|
repo = "mSAT";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-ER7ZUejW+Zy3l2HIoFDYbR8iaKMvLZWaeWrOAAYXjG4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
iter
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace dune --replace mdx ocaml-mdx
|
||||||
|
'';
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
checkInputs = [ containers ];
|
||||||
|
nativeCheckInputs = [ mdx.bin ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A modular sat/smt solver with proof output.";
|
||||||
|
homepage = "https://gbury.github.io/mSAT/";
|
||||||
|
license = lib.licenses.asl20;
|
||||||
|
maintainers = [ lib.maintainers.vbgl ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1174,6 +1174,8 @@ let
|
||||||
|
|
||||||
mrmime = callPackage ../development/ocaml-modules/mrmime { };
|
mrmime = callPackage ../development/ocaml-modules/mrmime { };
|
||||||
|
|
||||||
|
msat = callPackage ../development/ocaml-modules/msat { };
|
||||||
|
|
||||||
mtime_1 = callPackage ../development/ocaml-modules/mtime/1_x.nix { };
|
mtime_1 = callPackage ../development/ocaml-modules/mtime/1_x.nix { };
|
||||||
mtime = callPackage ../development/ocaml-modules/mtime { };
|
mtime = callPackage ../development/ocaml-modules/mtime { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue