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.

23 lines
538 B
Nix
Raw Normal View History

2019-08-07 12:28:49 +02:00
{ lib, buildDunePackage, fetchFromGitHub }:
buildDunePackage rec {
pname = "minisat";
version = "0.5";
2021-04-05 20:33:35 +02:00
minimalOCamlVersion = "4.05";
2019-08-07 12:28:49 +02:00
src = fetchFromGitHub {
owner = "c-cube";
repo = "ocaml-minisat";
2021-04-05 20:33:35 +02:00
rev = "v${version}";
hash = "sha256-hqGSHxhT+Z2slRCIXnfYuasG1K3tVG/tsM0IXxmy9hQ=";
2019-08-07 12:28:49 +02:00
};
meta = {
homepage = "https://c-cube.github.io/ocaml-minisat/";
2019-08-07 12:28:49 +02:00
description = "Simple bindings to Minisat-C";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ mgttlinger ];
};
}