ocamlPackages.ke: 0.4 → 0.6

This commit is contained in:
Vincent Laporte 2022-06-22 16:54:13 +02:00 committed by Vincent Laporte
parent 9b08b9c44f
commit 7b410b13ee

View file

@ -5,21 +5,19 @@
buildDunePackage rec {
pname = "ke";
version = "0.4";
useDune2 = true;
version = "0.6";
src = fetchurl {
url = "https://github.com/mirage/ke/releases/download/v${version}/ke-v${version}.tbz";
sha256 = "13c9xy60vmq29mnwpg3h3zgl6gjbjfwbx1s0crfc6xwvark0zxnx";
url = "https://github.com/mirage/ke/releases/download/v${version}/ke-${version}.tbz";
sha256 = "sha256-YSFyB+IgCwSxd1lzZhD/kggmmmR/hUy1rnLNrA1nIwU=";
};
propagatedBuildInputs = [ bigarray-compat fmt ];
propagatedBuildInputs = [ fmt ];
checkInputs = [ alcotest bigstringaf ];
doCheck = true;
minimumOCamlVersion = "4.03";
minimalOCamlVersion = "4.08";
meta = {
description = "Fast implementation of queue in OCaml";