summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/conduit/default.nix
blob: 39234e86ef1c22c80357f82e40d367df7557eacf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchFromGitHub, buildDunePackage
, ppx_sexp_conv
, astring, ipaddr, uri
}:

buildDunePackage rec {
  pname = "conduit";
	version = "1.0.0";

	src = fetchFromGitHub {
		owner = "mirage";
		repo = "ocaml-conduit";
		rev = "v${version}";
		sha256 = "1ryigzh7sfif1mly624fpm87aw5h60n5wzdlrvqsf71qcpxc6iiz";
	};

	buildInputs = [ ppx_sexp_conv ];
	propagatedBuildInputs = [ astring ipaddr uri ];

	meta = {
		description = "Network connection library for TCP and SSL";
		license = stdenv.lib.licenses.isc;
		maintainers = [ stdenv.lib.maintainers.vbgl ];
		inherit (src.meta) homepage;
	};
}