ocamlPackages.gendarme: init at 0.3 (#451870)

This commit is contained in:
Vincent Laporte
2025-10-16 05:54:32 +00:00
committed by GitHub
2 changed files with 29 additions and 0 deletions
@@ -0,0 +1,27 @@
{
lib,
buildDunePackage,
fetchFromGitHub,
}:
buildDunePackage rec {
pname = "gendarme";
version = "0.3";
minimalOCamlVersion = "4.08";
src = fetchFromGitHub {
owner = "bensmrs";
repo = "gendarme";
tag = version;
hash = "sha256-GWWAbYevd74YYRpyUjEI4rtzuXGZPp4Wa4uUqD6D7l8=";
};
meta = {
description = "Marshalling library for OCaml";
homepage = "https://github.com/bensmrs/gendarme";
changelog = "https://github.com/bensmrs/gendarme/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ethancedwards8 ];
};
}
+2
View File
@@ -679,6 +679,8 @@ let
gen_js_api = callPackage ../development/ocaml-modules/gen_js_api { };
gendarme = callPackage ../development/ocaml-modules/gendarme { };
genspio = callPackage ../development/ocaml-modules/genspio { };
get-activity = callPackage ../development/ocaml-modules/get-activity { };