biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / hpack / default.nix
blob3b8057bf81c8b08d6233aa7803aabe29df6a6390
1 { buildDunePackage
2 , lib
3 , fetchurl
4 , angstrom
5 , faraday
6 }:
8 buildDunePackage rec {
9   pname = "hpack";
10   version = "0.11.0";
12   src = fetchurl {
13     url = "https://github.com/anmonteiro/ocaml-h2/releases/download/${version}/h2-${version}.tbz";
14     hash = "sha256-GdXwazlgDurjzy7ekLpuMkCii8W+F/jl/IBv/WTHgFM=";
15   };
17   minimalOCamlVersion = "4.08";
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   };