fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchFromGitHub, ocaml, findlib, jbuilder
2, ppx_sexp_conv
3, astring, ipaddr, uri
4}:
5
6stdenv.mkDerivation rec {
7 version = "1.0.0";
8 name = "ocaml${ocaml.version}-conduit-${version}";
9
10 src = fetchFromGitHub {
11 owner = "mirage";
12 repo = "ocaml-conduit";
13 rev = "v${version}";
14 sha256 = "1ryigzh7sfif1mly624fpm87aw5h60n5wzdlrvqsf71qcpxc6iiz";
15 };
16
17 buildInputs = [ ocaml findlib jbuilder ppx_sexp_conv ];
18 propagatedBuildInputs = [ astring ipaddr uri ];
19
20 buildPhase = "jbuilder build -p conduit";
21
22 inherit (jbuilder) installPhase;
23
24 meta = {
25 description = "Network connection library for TCP and SSL";
26 license = stdenv.lib.licenses.isc;
27 maintainers = [ stdenv.lib.maintainers.vbgl ];
28 inherit (src.meta) homepage;
29 inherit (ocaml.meta) platforms;
30 };
31}