mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-16 21:48:22 +00:00
ocaml-minisat: init at 0.2
This commit is contained in:
parent
6c6276c8aa
commit
e5340bb5ef
22
pkgs/development/ocaml-modules/minisat/default.nix
Normal file
22
pkgs/development/ocaml-modules/minisat/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, buildDunePackage, fetchFromGitHub }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "minisat";
|
||||
version = "0.2";
|
||||
|
||||
minimumOCamlVersion = "4.05";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "c-cube";
|
||||
repo = "ocaml-minisat";
|
||||
rev = version;
|
||||
sha256 = "1jibylmb1ww0x42n6wl8bdwicaysgxp0ag244x7w5m3jifq3xs6q";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = https://c-cube.github.io/ocaml-minisat/;
|
||||
description = "Simple bindings to Minisat-C";
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = with lib.maintainers; [ mgttlinger ];
|
||||
};
|
||||
}
|
@ -444,6 +444,8 @@ let
|
||||
|
||||
mezzo = callPackage ../development/compilers/mezzo { };
|
||||
|
||||
minisat = callPackage ../development/ocaml-modules/minisat { };
|
||||
|
||||
mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
|
||||
|
||||
mlgmpidl = callPackage ../development/ocaml-modules/mlgmpidl { };
|
||||
|
Loading…
Reference in New Issue
Block a user