5d26766cbf
Added homepage where missing, where the sources are pulled from: - https://github.com - https://git.sr.ht - https://gitlab.com - https://invent.kde.org - https://codeberg.org - https://gitlab.gnome.org - https://gitlab.freedesktop.org - https://git.FreeBSD.org - https://salsa.debian.org - https://git.tvdr.de - https://git.suckless.org
22 lines
401 B
Nix
22 lines
401 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";
|
|
homepage = "https://gitlab.com/nomadic-labs/ringo";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.ulrikstrid ];
|
|
};
|
|
}
|