Commit 126db443 authored by Vincent Laporte's avatar Vincent Laporte Committed by Vincent Laporte
Browse files

ocamlPackages.monolith: init at 20250314

parent 15c8a58d
Loading
Loading
Loading
Loading
+36 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };