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
/
shared-memory-ring
/
lwt.nix
blob
e3ae1ef2e3dc4417ae7800fd6c40b8cffc41a15a
1
{ lib
2
, buildDunePackage
3
, shared-memory-ring
4
, ppx_cstruct
5
, cstruct
6
, lwt
7
, lwt-dllist
8
, mirage-profile
9
, ounit
10
}:
11
12
buildDunePackage {
13
pname = "shared-memory-ring-lwt";
14
15
inherit (shared-memory-ring) version src;
16
17
buildInputs = [
18
ppx_cstruct
19
];
20
21
propagatedBuildInputs = [
22
shared-memory-ring
23
cstruct
24
lwt
25
lwt-dllist
26
mirage-profile
27
];
28
29
doCheck = true;
30
checkInputs = [
31
ounit
32
];
33
34
meta = shared-memory-ring.meta // {
35
description = "Shared memory rings for RPC and bytestream communications using Lwt";
36
};
37
}