ocamlPackages.mlbdd: init at 0.7.2 (#344136)

This commit is contained in:
Kait Lam
2024-09-24 18:26:35 +10:00
committed by GitHub
parent b659fa4ef8
commit 518fc09de0
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
{
lib,
fetchFromGitHub,
buildDunePackage,
ounit,
}:
buildDunePackage {
pname = "mlbdd";
version = "0.7.2";
minimalOCamlVersion = "4.04";
src = fetchFromGitHub {
owner = "arlencox";
repo = "mlbdd";
rev = "v0.7.2";
hash = "sha256-GRkaUL8LQDdQx9mPvlJIXatgRfen/zKt+nGLiH7Mfvs=";
};
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 ];
};
}

View File

@@ -1179,6 +1179,8 @@ let
mirage-vnetif = callPackage ../development/ocaml-modules/mirage-vnetif { };
mlbdd = callPackage ../development/ocaml-modules/mlbdd { };
mldoc = callPackage ../development/ocaml-modules/mldoc { };
mlgmpidl = callPackage ../development/ocaml-modules/mlgmpidl { };