tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.httpun-ws-lwt: init at 0.2.0
r17x
1 year ago
18a8d8b4
73204a5d
+28
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
httpun-ws
lwt.nix
top-level
ocaml-packages.nix
+27
pkgs/development/ocaml-modules/httpun-ws/lwt.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
buildDunePackage,
4
4
+
lwt,
5
5
+
digestif,
6
6
+
httpun-ws,
7
7
+
gluten-lwt,
8
8
+
}:
9
9
+
10
10
+
buildDunePackage {
11
11
+
pname = "httpun-ws-lwt";
12
12
+
13
13
+
inherit (httpun-ws) src version;
14
14
+
15
15
+
propagatedBuildInputs = [
16
16
+
httpun-ws
17
17
+
lwt
18
18
+
digestif
19
19
+
gluten-lwt
20
20
+
];
21
21
+
22
22
+
doCheck = true;
23
23
+
24
24
+
meta = httpun-ws.meta // {
25
25
+
description = "Lwt support for httpun-ws";
26
26
+
};
27
27
+
}
+1
pkgs/top-level/ocaml-packages.nix
···
705
705
706
706
httpun-ws = callPackage ../development/ocaml-modules/httpun-ws { };
707
707
708
708
+
httpun-ws-lwt = callPackage ../development/ocaml-modules/httpun-ws/lwt.nix { };
708
709
hxd = callPackage ../development/ocaml-modules/hxd { };
709
710
710
711
### I ###