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
biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
httpaf
/
lwt-unix.nix
blob
9b78d7bf6401b1860f958a82202f5aa9f7ba6d88
1
{ lib, buildDunePackage
2
, httpaf
3
, faraday-lwt-unix
4
, lwt
5
}:
6
7
buildDunePackage {
8
pname = "httpaf-lwt-unix";
9
inherit (httpaf) version src;
10
duneVersion = "3";
11
minimalOCamlVersion = "4.08";
12
13
propagatedBuildInputs = [
14
faraday-lwt-unix
15
httpaf
16
lwt
17
];
18
19
meta = httpaf.meta // {
20
description = "Lwt support for http/af";
21
};
22
}