ocamlPackages.domain-local-await: 1.0.0 → 1.0.1

https://github.com/ocaml-multicore/domain-local-await/releases/tag/1.0.1
This commit is contained in:
toastal 2024-02-04 02:58:45 +07:00 committed by Vincent Laporte
parent 758d35efbd
commit ecbce334d4

View File

@ -2,20 +2,20 @@
, buildDunePackage
, fetchurl
, alcotest
, domain_shims
, mdx
, thread-table
}:
buildDunePackage rec {
pname = "domain-local-await";
version = "1.0.0";
version = "1.0.1";
minimalOCamlVersion = "5.0";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/ocaml-multicore/${pname}/releases/download/${version}/${pname}-${version}.tbz";
sha256 = "KijWg0iTSdqbwkXd5Kr3/94urDm8QFSY2lMmGjUuxGo=";
hash = "sha256-KVIRPFPLB+KwVLLchs5yk5Ex2rggfI8xOa2yPmTN+m8=";
};
propagatedBuildInputs = [
@ -26,6 +26,7 @@ buildDunePackage rec {
checkInputs = [
alcotest
domain_shims
mdx
];