Unverified Commit e354e883 authored by Vincent Laporte's avatar Vincent Laporte Committed by GitHub
Browse files

ocamlPackages.ezgzip: init at 0.2.3 (#474699)

parents a2f9106d 647c0963
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{
  alcotest,
  astring,
  buildDunePackage,
  camlzip,
  fetchurl,
  lib,
  ocplib-endian,
  qcheck,
  rresult,
}:

buildDunePackage (finalAttrs: {
  pname = "ezgzip";
  version = "0.2.3";
  src = fetchurl {
    url = "https://github.com/hcarty/ezgzip/releases/download/v${finalAttrs.version}/ezgzip-v${finalAttrs.version}.tbz";
    hash = "sha256-iGju25j4Oy1T8JGoJ9ubeltOm6U4u8CAyRtKxLr2edQ=";
  };
  propagatedBuildInputs = [
    astring
    camlzip
    ocplib-endian
    rresult
  ];
  checkInputs = [
    alcotest
    qcheck
  ];
  doCheck = true;
  meta = {
    description = "Simple gzip (de)compression library";
    homepage = "https://github.com/hcarty/ezgzip";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.vog ];
  };
})
+2 −0
Original line number Diff line number Diff line
@@ -577,6 +577,8 @@ let

        extunix = callPackage ../development/ocaml-modules/extunix/default.nix { };

        ezgzip = callPackage ../development/ocaml-modules/ezgzip { };

        ezjsonm = callPackage ../development/ocaml-modules/ezjsonm { };

        ezjsonm-encoding = callPackage ../development/ocaml-modules/ezjsonm-encoding { };