summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/minisat
diff options
context:
space:
mode:
authorMerlin Göttlinger <megoettlinger@gmail.com>2019-08-07 12:28:49 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2019-08-07 13:45:31 +0000
commite5340bb5ef150a8a34742c81d1514b8edfd22fc2 (patch)
treef40ee988c1aa5577b43adb2abdb5254339cc7a36 /pkgs/development/ocaml-modules/minisat
parent6c6276c8aa88fe4e6fb2fb34f649154cca58f0c2 (diff)
downloadnixpkgs-e5340bb5ef150a8a34742c81d1514b8edfd22fc2.tar
nixpkgs-e5340bb5ef150a8a34742c81d1514b8edfd22fc2.tar.gz
nixpkgs-e5340bb5ef150a8a34742c81d1514b8edfd22fc2.tar.bz2
nixpkgs-e5340bb5ef150a8a34742c81d1514b8edfd22fc2.tar.lz
nixpkgs-e5340bb5ef150a8a34742c81d1514b8edfd22fc2.tar.xz
nixpkgs-e5340bb5ef150a8a34742c81d1514b8edfd22fc2.tar.zst
nixpkgs-e5340bb5ef150a8a34742c81d1514b8edfd22fc2.zip
ocaml-minisat: init at 0.2
Diffstat (limited to 'pkgs/development/ocaml-modules/minisat')
-rw-r--r--pkgs/development/ocaml-modules/minisat/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/minisat/default.nix b/pkgs/development/ocaml-modules/minisat/default.nix
new file mode 100644
index 00000000000..79820b16e6c
--- /dev/null
+++ b/pkgs/development/ocaml-modules/minisat/default.nix
@@ -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 ];
+  };
+}