repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tailscale: build derpprobe (#364918)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
conduit
/
lwt.nix
blob
2b29b687a7316010927afb1f68a64a8e8818f0c1
1
{
2
buildDunePackage,
3
ppx_sexp_conv,
4
conduit,
5
lwt,
6
sexplib0,
7
}:
8
9
buildDunePackage {
10
pname = "conduit-lwt";
11
inherit (conduit) version src;
12
13
buildInputs = [ ppx_sexp_conv ];
14
15
propagatedBuildInputs = [
16
conduit
17
lwt
18
sexplib0
19
];
20
21
meta = conduit.meta // {
22
description = "Network connection establishment library for Lwt";
23
};
24
}