ocamlPackages.multipart_form: 0.7.0 -> 0.8.0 (#489177)

This commit is contained in:
Vincent Laporte
2026-02-10 19:59:05 +00:00
committed by GitHub
@@ -14,13 +14,13 @@
uutf,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "multipart_form";
version = "0.7.0";
version = "0.8.0";
src = fetchurl {
url = "https://github.com/dinosaure/multipart_form/releases/download/v${version}/multipart_form-${version}.tbz";
hash = "sha256-IqGGnDJtE0OKrtt+ah1Cy9zx4wavEl9eXXjZSh/M2JE=";
url = "https://github.com/dinosaure/multipart_form/releases/download/v${finalAttrs.version}/multipart_form-${finalAttrs.version}.tbz";
hash = "sha256-lQdAZ5vmBOhkH1V3MuqYi+UGpyJPsSkoU6kEGYvchWA=";
};
propagatedBuildInputs = [
@@ -42,4 +42,4 @@ buildDunePackage rec {
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}
})