Unverified Commit a57dccaf authored by Ethan Carter Edwards's avatar Ethan Carter Edwards
Browse files

ocamlPackages.gendarme: init at 0.3

parent 9768ddcc
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -677,6 +677,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 { };