ocamlPackages.ezgzip: init at 0.2.3 (#474699)

This commit is contained in:
Vincent Laporte
2025-12-29 17:14:04 +00:00
committed by GitHub
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{
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
View File
@@ -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 { };