ocamlPackages.ringo: 0.9 -> 1.0.0

This commit is contained in:
Laurent Canis 2023-04-28 10:46:38 -04:00 committed by Ulrik Strid
parent f602fe8419
commit 09a21ed0ac
3 changed files with 2 additions and 24 deletions

View file

@ -2,22 +2,18 @@
buildDunePackage rec {
pname = "ringo";
version = "0.9";
version = "1.0.0";
src = fetchFromGitLab {
owner = "nomadic-labs";
repo = "ringo";
rev = "v${version}";
sha256 = "sha256-lPb+WrRsmtOow9BX9FW4HoILlsTuuMrVlK0XPcXWZ9U=";
sha256 = "sha256-9HW3M27BxrEPbF8cMHwzP8FmJduUInpQQAE2672LOuU=";
};
minimalOCamlVersion = "4.05";
doCheck = true;
# If we just run the test as is it will try to test ringo-lwt
checkPhase = "dune build @test/runtest";
meta = {
description = "Caches (bounded-size key-value stores) and other bounded-size stores";
license = lib.licenses.mit;

View file

@ -1,17 +0,0 @@
{ lib, buildDunePackage, ringo, lwt }:
buildDunePackage {
pname = "ringo-lwt";
inherit (ringo) version src doCheck;
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [
ringo
lwt
];
meta = ringo.meta // {
description = "Lwt-wrappers for Ringo caches";
};
}

View file

@ -1452,7 +1452,6 @@ let
rfc7748 = callPackage ../development/ocaml-modules/rfc7748 { };
ringo = callPackage ../development/ocaml-modules/ringo { };
ringo-lwt = callPackage ../development/ocaml-modules/ringo/lwt.nix { };
rock = callPackage ../development/ocaml-modules/rock { };