mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-06 09:12:35 +03:00
38 lines
565 B
Nix
38 lines
565 B
Nix
{ lib
|
|
, buildDunePackage
|
|
, shared-memory-ring
|
|
, ppx_cstruct
|
|
, cstruct
|
|
, lwt
|
|
, lwt-dllist
|
|
, mirage-profile
|
|
, ounit
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "shared-memory-ring-lwt";
|
|
|
|
inherit (shared-memory-ring) version src useDune2;
|
|
|
|
buildInputs = [
|
|
ppx_cstruct
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
shared-memory-ring
|
|
cstruct
|
|
lwt
|
|
lwt-dllist
|
|
mirage-profile
|
|
];
|
|
|
|
doCheck = true;
|
|
checkInputs = [
|
|
ounit
|
|
];
|
|
|
|
meta = shared-memory-ring.meta // {
|
|
description = "Shared memory rings for RPC and bytestream communications using Lwt";
|
|
};
|
|
}
|