biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / gluten / default.nix
blob5c55f2f09bfd1e4df394faa768f8a58b6306bc82
1 { buildDunePackage
2 , bigstringaf
3 , faraday
4 , fetchurl
5 , lib
6 }:
8 buildDunePackage rec {
9   pname = "gluten";
10   version = "0.5.0";
12   src = fetchurl {
13     url = "https://github.com/anmonteiro/gluten/releases/download/${version}/gluten-${version}.tbz";
14     hash = "sha256-mGKbbQSPMOumUCtxrAdoBt5y2RrkAf58spkUymTYhYM=";
15   };
17   minimalOCamlVersion = "4.08";
19   propagatedBuildInputs = [
20     bigstringaf
21     faraday
22   ];
24   doCheck = false; # No tests
26   meta = {
27     description = "An implementation of a platform specific runtime code for driving network libraries based on state machines, such as http/af, h2 and websocketaf";
28     license = lib.licenses.bsd3;
29     homepage = "https://github.com/anmonteiro/gluten";
30     maintainers = with lib.maintainers; [ anmonteiro ];
31   };