ocamlPackages.multipart_form: init at 0.6.0

This commit is contained in:
Vincent Laporte
2025-02-05 06:33:02 +01:00
committed by Vincent Laporte
parent 73583ed8f7
commit fa4301e304
2 changed files with 47 additions and 0 deletions
@@ -0,0 +1,45 @@
{
lib,
buildDunePackage,
fetchurl,
angstrom,
base64,
bigstringaf,
fmt,
ke,
logs,
pecu,
prettym,
unstrctrd,
uutf,
}:
buildDunePackage rec {
pname = "multipart_form";
version = "0.6.0";
src = fetchurl {
url = "https://github.com/dinosaure/multipart_form/releases/download/v${version}/multipart_form-${version}.tbz";
hash = "sha256-oOMpwyPP+q1BZ81a+HpooeaglUZgDxdz2MDNLygGIRY=";
};
propagatedBuildInputs = [
angstrom
base64
bigstringaf
fmt
ke
logs
pecu
prettym
unstrctrd
uutf
];
meta = {
description = "Implementation of RFC7578 in OCaml";
homepage = "https://github.com/dinosaure/multipart_form";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}
+2
View File
@@ -1246,6 +1246,8 @@ let
multicore-magic = callPackage ../development/ocaml-modules/multicore-magic { };
multipart_form = callPackage ../development/ocaml-modules/multipart_form { };
multipart-form-data = callPackage ../development/ocaml-modules/multipart-form-data { };
mustache = callPackage ../development/ocaml-modules/mustache { };