ocamlPackages.mirage-kv: 3.0.1 → 4.0.1

This commit is contained in:
Vincent Laporte 2023-03-02 04:42:24 +00:00 committed by Vincent Laporte
parent 4fb55b055d
commit 099dccddc9

View file

@ -1,20 +1,22 @@
{ lib, fetchurl, buildDunePackage { lib, fetchurl, buildDunePackage
, fmt, mirage-device , fmt
, lwt
, alcotest , alcotest
}: }:
buildDunePackage rec { buildDunePackage rec {
pname = "mirage-kv"; pname = "mirage-kv";
version = "3.0.1"; version = "4.0.1";
useDune2 = true; duneVersion = "3";
minimalOCamlVersion = "4.08";
src = fetchurl { src = fetchurl {
url = "https://github.com/mirage/mirage-kv/releases/download/v${version}/mirage-kv-v${version}.tbz"; url = "https://github.com/mirage/mirage-kv/releases/download/v${version}/mirage-kv-${version}.tbz";
sha256 = "1n736sjvdd8rkbc2b5jm9sn0w6hvhjycma5328r0l03v24vk5cki"; hash = "sha256-p6i4zUVgxtTnUiBIjb8W6u9xRTczVl4WwfFcl5tVqnE=";
}; };
propagatedBuildInputs = [ fmt mirage-device ]; propagatedBuildInputs = [ fmt lwt ];
doCheck = true; doCheck = true;
checkInputs = [ alcotest ]; checkInputs = [ alcotest ];