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
python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
paf
/
le.nix
blob
5c07eba3aab0e9310efd265933ecf09a4a690195
1
{ lib
2
, buildDunePackage
3
, paf
4
, duration
5
, emile
6
, httpaf
7
, letsencrypt
8
, mirage-stack
9
, mirage-time
10
, tls-mirage
11
, x509
12
}:
13
14
buildDunePackage {
15
pname = "paf-le";
16
17
inherit (paf)
18
version
19
src
20
;
21
22
propagatedBuildInputs = [
23
paf
24
duration
25
emile
26
httpaf
27
letsencrypt
28
mirage-stack
29
mirage-time
30
tls-mirage
31
x509
32
];
33
34
doCheck = true;
35
36
meta = paf.meta // {
37
description = "A CoHTTP client with its HTTP/AF implementation";
38
};
39
}