mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
17 lines
338 B
Nix
17 lines
338 B
Nix
{ lib, buildDunePackage, ringo }:
|
|
|
|
buildDunePackage {
|
|
pname = "aches";
|
|
inherit (ringo) src version;
|
|
|
|
propagatedBuildInputs = [
|
|
ringo
|
|
];
|
|
|
|
meta = {
|
|
description = "Caches (bounded-size stores) for in-memory values and for resources";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.ulrikstrid ];
|
|
};
|
|
}
|