lol

ocamlPackages.monolith: init at 20250314

authored by

Vincent Laporte and committed by
Vincent Laporte
126db443 15c8a58d

+38
+36
pkgs/development/ocaml-modules/monolith/default.nix
··· 1 + { 2 + lib, 3 + buildDunePackage, 4 + fetchFromGitLab, 5 + afl-persistent, 6 + pprint, 7 + version ? "20250314", 8 + }: 9 + 10 + buildDunePackage { 11 + pname = "monolith"; 12 + inherit version; 13 + 14 + minimalOCamlVersion = "4.12"; 15 + 16 + src = fetchFromGitLab { 17 + domain = "gitlab.inria.fr"; 18 + owner = "fpottier"; 19 + repo = "monolith"; 20 + tag = version; 21 + hash = "sha256-hIB3QSOLARumRgpUroTFUzSreHw7kMikGde+mB28sGM="; 22 + }; 23 + 24 + propagatedBuildInputs = [ 25 + afl-persistent 26 + pprint 27 + ]; 28 + 29 + meta = { 30 + description = "Facilities for testing an OCaml library"; 31 + homepage = "https://cambium.inria.fr/~fpottier/monolith/doc/monolith/Monolith/index.html"; 32 + changelog = "https://gitlab.inria.fr/fpottier/monolith/-/raw/${version}/CHANGES.md"; 33 + license = lib.licenses.lgpl3Plus; 34 + maintainers = [ lib.maintainers.vbgl ]; 35 + }; 36 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 1252 1252 1253 1253 mmap = callPackage ../development/ocaml-modules/mmap { }; 1254 1254 1255 + monolith = callPackage ../development/ocaml-modules/monolith { }; 1256 + 1255 1257 mopsa = callPackage ../development/ocaml-modules/mopsa { }; 1256 1258 1257 1259 morbig = callPackage ../development/ocaml-modules/morbig { };