at 24.11-pre 16 lines 338 B view raw
1{ lib, buildDunePackage, ringo }: 2 3buildDunePackage { 4 pname = "aches"; 5 inherit (ringo) src version; 6 7 propagatedBuildInputs = [ 8 ringo 9 ]; 10 11 meta = { 12 description = "Caches (bounded-size stores) for in-memory values and for resources"; 13 license = lib.licenses.mit; 14 maintainers = [ lib.maintainers.ulrikstrid ]; 15 }; 16}