forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / ocaml-modules / ringo / default.nix
blobbdc9e07c0411c2b0798446a073c13ee557b36736
1 { lib, fetchFromGitLab, buildDunePackage }:
3 buildDunePackage rec {
4   pname = "ringo";
5   version = "1.1.0";
6   src = fetchFromGitLab {
7     owner = "nomadic-labs";
8     repo = "ringo";
9     rev = "v${version}";
10     hash = "sha256-8dThhY7TIjd0lLdCt6kxr0yhgVGDyN6ZMSx0Skfbcwk=";
11   };
13   minimalOCamlVersion = "4.08";
15   doCheck = true;
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   };