Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
807 B
Nix
31 lines
807 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "processor";
|
|
version = "0.1-unstable-2024-07-23";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "haesbaert";
|
|
repo = "ocaml-processor";
|
|
rev = "74df5ab38773e5c4ad5c3a3f21f525d863731c17";
|
|
hash = "sha256-tWmgAsYfcpZUyxo7F+WIC3WOfAjDiuV74CscqEd93gk=";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "CPU topology and affinity for ocaml-multicore";
|
|
homepage = "https://haesbaert.github.io/ocaml-processor/processor/index.html";
|
|
downloadPage = "https://github.com/haesbaert/ocaml-processor";
|
|
changelog = "https://github.com/haesbaert/ocaml-processor/releases/tag/v${version}";
|
|
license = lib.licenses.isc;
|
|
maintainers = [ lib.maintainers.ethancedwards8 ];
|
|
};
|
|
}
|