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