nixpkgs/pkgs/development/ocaml-modules/aches/lwt.nix
2023-05-02 16:47:31 +02:00

18 lines
340 B
Nix

{ lib, buildDunePackage, ringo, aches, lwt }:
buildDunePackage {
pname = "aches-lwt";
inherit (ringo) src version;
propagatedBuildInputs = [
aches
lwt
];
meta = {
description = "Caches (bounded-size stores) for Lwt promises";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ulrikstrid ];
};
}