nixpkgs/pkgs/development/ocaml-modules/domain-local-await/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

45 lines
910 B
Nix

{ lib
, buildDunePackage
, fetchurl
, alcotest
, domain_shims
, mdx
, thread-table
}:
buildDunePackage rec {
pname = "domain-local-await";
version = "1.0.1";
minimalOCamlVersion = "5.0";
src = fetchurl {
url = "https://github.com/ocaml-multicore/${pname}/releases/download/${version}/${pname}-${version}.tbz";
hash = "sha256-KVIRPFPLB+KwVLLchs5yk5Ex2rggfI8xOa2yPmTN+m8=";
};
propagatedBuildInputs = [
thread-table
];
doCheck = true;
checkInputs = [
alcotest
domain_shims
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 = "Scheduler independent blocking mechanism";
license = with lib.licenses; [ isc ];
maintainers = with lib.maintainers; [ toastal ];
};
}