insync: 3.9.3.60019 -> 3.9.4.60020 (#363380)
[NixPkgs.git] / pkgs / development / ocaml-modules / conduit / default.nix
blobde1159964fd1702fad6f4e92c78d4b3e784d086b
2   lib,
3   fetchurl,
4   buildDunePackage,
5   ppx_sexp_conv,
6   sexplib0,
7   astring,
8   uri,
9   ipaddr,
10   ipaddr-sexp,
13 buildDunePackage rec {
14   pname = "conduit";
15   version = "7.0.0";
17   minimalOCamlVersion = "4.13";
19   src = fetchurl {
20     url = "https://github.com/mirage/ocaml-conduit/releases/download/v${version}/conduit-${version}.tbz";
21     hash = "sha256-Pg7ChIlqldF42NE1eS56Rssk+csK8OqWTQXO4avLEhg=";
22   };
24   propagatedBuildInputs = [
25     astring
26     ipaddr
27     ipaddr-sexp
28     sexplib0
29     uri
30     ppx_sexp_conv
31   ];
33   meta = {
34     description = "Network connection establishment library";
35     license = lib.licenses.isc;
36     maintainers = with lib.maintainers; [
37       alexfmpe
38       vbgl
39     ];
40     homepage = "https://github.com/mirage/ocaml-conduit";
41   };