ocamlPackages.ezgzip: init at 0.2.3 (#474699)
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user