mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
18 lines
340 B
Nix
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 ];
|
|
};
|
|
}
|