forked from mirrors/nixpkgs
23 lines
538 B
Nix
23 lines
538 B
Nix
{ lib, buildDunePackage, fetchFromGitHub }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "minisat";
|
|
version = "0.5";
|
|
|
|
minimalOCamlVersion = "4.05";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "c-cube";
|
|
repo = "ocaml-minisat";
|
|
rev = "v${version}";
|
|
hash = "sha256-hqGSHxhT+Z2slRCIXnfYuasG1K3tVG/tsM0IXxmy9hQ=";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://c-cube.github.io/ocaml-minisat/";
|
|
description = "Simple bindings to Minisat-C";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ mgttlinger ];
|
|
};
|
|
}
|