ocamlPackages.monolith: init at 20250314
This commit is contained in:
committed by
Vincent Laporte
parent
15c8a58d70
commit
126db443ed
@@ -0,0 +1,36 @@
|
||||
{
|
||||
lib,
|
||||
buildDunePackage,
|
||||
fetchFromGitLab,
|
||||
afl-persistent,
|
||||
pprint,
|
||||
version ? "20250314",
|
||||
}:
|
||||
|
||||
buildDunePackage {
|
||||
pname = "monolith";
|
||||
inherit version;
|
||||
|
||||
minimalOCamlVersion = "4.12";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "gitlab.inria.fr";
|
||||
owner = "fpottier";
|
||||
repo = "monolith";
|
||||
tag = version;
|
||||
hash = "sha256-hIB3QSOLARumRgpUroTFUzSreHw7kMikGde+mB28sGM=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
afl-persistent
|
||||
pprint
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Facilities for testing an OCaml library";
|
||||
homepage = "https://cambium.inria.fr/~fpottier/monolith/doc/monolith/Monolith/index.html";
|
||||
changelog = "https://gitlab.inria.fr/fpottier/monolith/-/raw/${version}/CHANGES.md";
|
||||
license = lib.licenses.lgpl3Plus;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
};
|
||||
}
|
||||
@@ -1252,6 +1252,8 @@ let
|
||||
|
||||
mmap = callPackage ../development/ocaml-modules/mmap { };
|
||||
|
||||
monolith = callPackage ../development/ocaml-modules/monolith { };
|
||||
|
||||
mopsa = callPackage ../development/ocaml-modules/mopsa { };
|
||||
|
||||
morbig = callPackage ../development/ocaml-modules/morbig { };
|
||||
|
||||
Reference in New Issue
Block a user