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