Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 ringo, 5 aches, 6 lwt, 7}: 8 9buildDunePackage { 10 pname = "aches-lwt"; 11 inherit (ringo) src version; 12 13 propagatedBuildInputs = [ 14 aches 15 lwt 16 ]; 17 18 meta = { 19 description = "Caches (bounded-size stores) for Lwt promises"; 20 license = lib.licenses.mit; 21 maintainers = [ lib.maintainers.ulrikstrid ]; 22 }; 23}