nixpkgs/pkgs/development/ocaml-modules/minisat/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
559 B
Nix
Raw Normal View History

2019-08-07 10:28:49 +00:00
{ lib, buildDunePackage, fetchFromGitHub }:
buildDunePackage rec {
pname = "minisat";
2021-10-24 12:49:03 +00:00
version = "0.4";
2021-04-05 18:33:35 +00:00
useDune2 = true;
2019-08-07 10:28:49 +00:00
minimumOCamlVersion = "4.05";
src = fetchFromGitHub {
owner = "c-cube";
repo = "ocaml-minisat";
2021-04-05 18:33:35 +00:00
rev = "v${version}";
2021-10-24 12:49:03 +00:00
sha256 = "009jncrvnl9synxx6jnm6gp0cs7zlj71z22zz7bs1750b0jrfm2r";
2019-08-07 10:28:49 +00:00
};
meta = {
homepage = "https://c-cube.github.io/ocaml-minisat/";
2019-08-07 10:28:49 +00:00
description = "Simple bindings to Minisat-C";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ mgttlinger ];
};
}