about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/aches/lwt.nix
blob: bfb57a5a91aa9d87145e304564a721f0215c4ec2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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 ];
  };
}