mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
23 lines
523 B
Nix
23 lines
523 B
Nix
{ lib, fetchFromGitLab, buildDunePackage }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ringo";
|
|
version = "1.0.0";
|
|
src = fetchFromGitLab {
|
|
owner = "nomadic-labs";
|
|
repo = "ringo";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-9HW3M27BxrEPbF8cMHwzP8FmJduUInpQQAE2672LOuU=";
|
|
};
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Caches (bounded-size key-value stores) and other bounded-size stores";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.ulrikstrid ];
|
|
};
|
|
}
|