nixpkgs/pkgs/development/ocaml-modules/aches/lwt.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
340 B
Nix
Raw Normal View History

2023-04-28 14:46:52 +00:00
{ 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 ];
};
}