ocamlPackages.kcas: init at 0.6.1

This commit is contained in:
Vincent Laporte 2023-08-02 14:29:26 +02:00 committed by Vincent Laporte
parent d9b5ddcf05
commit 8a584ba59f
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib, buildDunePackage, fetchurl
, domain-local-await, domain-local-timeout
, alcotest
}:
buildDunePackage rec {
pname = "kcas";
version = "0.6.1";
src = fetchurl {
url = "https://github.com/ocaml-multicore/kcas/releases/download/${version}/kcas-${version}.tbz";
hash = "sha256-u3Z8uAvITRUhOcB2EUYjWtpxIFJMvm2O/kyNr/AELWI=";
};
propagatedBuildInputs = [ domain-local-await domain-local-timeout ];
doCheck = true;
checkInputs = [ alcotest ];
meta = {
homepage = "https://github.com/ocaml-multicore/kcas";
description = "STM based on lock-free MCAS";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}

View File

@ -799,6 +799,8 @@ let
kafka_lwt = callPackage ../development/ocaml-modules/kafka/lwt.nix { };
kcas = callPackage ../development/ocaml-modules/kcas { };
ke = callPackage ../development/ocaml-modules/ke { };
kicadsch = callPackage ../development/ocaml-modules/kicadsch { };