nixpkgs/pkgs/development/ocaml-modules/shared-memory-ring/lwt.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

38 lines
562 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;
buildInputs = [
ppx_cstruct
];
propagatedBuildInputs = [
shared-memory-ring
cstruct
lwt
lwt-dllist
mirage-profile
];
doCheck = true;
nativeCheckInputs = [
ounit
];
meta = shared-memory-ring.meta // {
description = "Shared memory rings for RPC and bytestream communications using Lwt";
};
}