python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / hpack / default.nix
blob5ebb14f30b88dc6e2ef3432f299445eca58e8c3b
1 { buildDunePackage
2 , lib
3 , fetchurl
4 , angstrom
5 , faraday
6 }:
8 buildDunePackage rec {
9   pname = "hpack";
10   version = "0.9.0";
12   src = fetchurl {
13     url = "https://github.com/anmonteiro/ocaml-h2/releases/download/${version}/h2-${version}.tbz";
14     sha256 = "sha256-7gjRhJs2mufQbImAXiKFT9mZ1kHGSHHwjCVZM5f0C14=";
15   };
17   minimalOCamlVersion = "4.04";
19   propagatedBuildInputs = [
20     angstrom
21     faraday
22   ];
24   # circular dependency
25   doCheck = false;
27   meta = {
28     license = lib.licenses.bsd3;
29     description = "An HPACK (Header Compression for HTTP/2) implementation in OCaml";
30     homepage = "https://github.com/anmonteiro/ocaml-h2";
31     maintainers = with lib.maintainers; [
32       sternenseemann
33       anmonteiro
34     ];
35   };