ocamlPackages.synchronizer: 0.1 -> 0.2

This commit is contained in:
redianthus
2025-12-22 15:43:31 +01:00
parent a8311f9a5f
commit dcbe210658
@@ -3,30 +3,35 @@
fetchFromGitHub,
buildDunePackage,
prelude,
alcotest,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "synchronizer";
version = "0.1";
version = "0.2";
minimalOCamlVersion = "5.1";
src = fetchFromGitHub {
owner = "OCamlPro";
repo = "synchronizer";
tag = version;
hash = "sha256-VlKqORXTXafT88GXHIYkz+A1VkEL3jP9SMqDdMyEdrw=";
tag = "${finalAttrs.version}";
hash = "sha256-0XtPHpDlyH1h8W2ZlRvJbZjCN9WP5mzk2N01WFd8eLQ=";
};
propagatedBuildInputs = [
prelude
];
checkInputs = [
alcotest
];
meta = {
homepage = "https://github.com/OCamlPro/synchronizer";
description = "Synchronizer to make datastructures thread-safe";
changelog = "https://raw.githubusercontent.com/OCamlPro/synchronizer/${src.rev}/CHANGES.md";
changelog = "https://raw.githubusercontent.com/OCamlPro/synchronizer/${finalAttrs.src.rev}/CHANGES.md";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ redianthus ];
};
}
})