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
/
paf
/
cohttp.nix
blob
253b271e0e97d106247f55b1464f9ebfbfab6cc4
1
{
2
buildDunePackage,
3
paf,
4
cohttp-lwt,
5
domain-name,
6
httpaf,
7
ipaddr,
8
alcotest-lwt,
9
fmt,
10
logs,
11
mirage-crypto-rng,
12
mirage-time-unix,
13
tcpip,
14
uri,
15
lwt,
16
astring,
17
}:
18
19
buildDunePackage {
20
pname = "paf-cohttp";
21
22
inherit (paf)
23
version
24
src
25
;
26
27
propagatedBuildInputs = [
28
paf
29
cohttp-lwt
30
domain-name
31
httpaf
32
ipaddr
33
];
34
35
doCheck = true;
36
checkInputs = [
37
alcotest-lwt
38
fmt
39
logs
40
mirage-crypto-rng
41
mirage-time-unix
42
tcpip
43
uri
44
lwt
45
astring
46
];
47
48
__darwinAllowLocalNetworking = true;
49
50
meta = paf.meta // {
51
description = "CoHTTP client with its HTTP/AF implementation";
52
};
53
}