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
dotnet: improve language coverage of passthru.tests for dotnet sdks (#370789)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
cohttp
/
lwt.nix
blob
4471ae205b1a826999ce903d20adda06d5e2508c
1
{
2
buildDunePackage,
3
cohttp,
4
lwt,
5
uri,
6
ppx_sexp_conv,
7
logs,
8
sexplib0,
9
}:
10
11
buildDunePackage {
12
pname = "cohttp-lwt";
13
inherit (cohttp)
14
version
15
src
16
;
17
18
duneVersion = "3";
19
20
buildInputs = [ ppx_sexp_conv ];
21
22
propagatedBuildInputs = [
23
cohttp
24
lwt
25
logs
26
sexplib0
27
uri
28
];
29
30
meta = cohttp.meta // {
31
description = "CoHTTP implementation using the Lwt concurrency library";
32
};
33
}