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
28 lines
605 B
Nix
28 lines
605 B
Nix
{
|
|
lib,
|
|
fetchFromGitLab,
|
|
buildDunePackage,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "ringo";
|
|
version = "1.1.0";
|
|
src = fetchFromGitLab {
|
|
owner = "nomadic-labs";
|
|
repo = "ringo";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-8dThhY7TIjd0lLdCt6kxr0yhgVGDyN6ZMSx0Skfbcwk=";
|
|
};
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Caches (bounded-size key-value stores) and other bounded-size stores";
|
|
homepage = "https://gitlab.com/nomadic-labs/ringo";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.ulrikstrid ];
|
|
};
|
|
})
|