depot/pkgs/development/ocaml-modules/mlbdd/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

30 lines
582 B
Nix

{
lib,
fetchFromGitHub,
buildDunePackage,
ounit,
}:
buildDunePackage {
pname = "mlbdd";
version = "0.7.3";
minimalOCamlVersion = "4.04";
src = fetchFromGitHub {
owner = "arlencox";
repo = "mlbdd";
rev = "v0.7.3";
hash = "sha256-TUdgx+B5341VJsnP7iTHID7hNC+5G/I2xNM5F3mdb/A=";
};
checkInputs = [ ounit ];
doCheck = true;
meta = {
homepage = "https://github.com/arlencox/mlbdd";
description = "A not-quite-so-simple Binary Decision Diagrams implementation for OCaml";
maintainers = with lib.maintainers; [ katrinafyi ];
};
}