mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
44 lines
896 B
Nix
44 lines
896 B
Nix
{ lib
|
|
, buildDunePackage
|
|
, fetchurl
|
|
, alcotest
|
|
, mdx
|
|
, thread-table
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "domain-local-await";
|
|
version = "1.0.0";
|
|
|
|
minimalOCamlVersion = "5.0";
|
|
duneVersion = "3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ocaml-multicore/${pname}/releases/download/${version}/${pname}-${version}.tbz";
|
|
sha256 = "KijWg0iTSdqbwkXd5Kr3/94urDm8QFSY2lMmGjUuxGo=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
thread-table
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
checkInputs = [
|
|
alcotest
|
|
mdx
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mdx.bin
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/ocaml-multicore/ocaml-${pname}";
|
|
changelog = "https://github.com/ocaml-multicore/ocaml-${pname}/raw/v${version}/CHANGES.md";
|
|
description = "A scheduler independent blocking mechanism";
|
|
license = with lib.licenses; [ isc ];
|
|
maintainers = with lib.maintainers; [ toastal ];
|
|
};
|
|
}
|