1{ lib, fetchFromGitLab, buildDunePackage }:
2
3buildDunePackage rec {
4 pname = "ringo";
5 version = "1.0.0";
6 src = fetchFromGitLab {
7 owner = "nomadic-labs";
8 repo = "ringo";
9 rev = "v${version}";
10 sha256 = "sha256-9HW3M27BxrEPbF8cMHwzP8FmJduUInpQQAE2672LOuU=";
11 };
12
13 minimalOCamlVersion = "4.08";
14
15 doCheck = true;
16
17 meta = {
18 description = "Caches (bounded-size key-value stores) and other bounded-size stores";
19 license = lib.licenses.mit;
20 maintainers = [ lib.maintainers.ulrikstrid ];
21 };
22}