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
33 lines
667 B
Nix
33 lines
667 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "25.04";
|
|
pname = "intel-cmt-cat";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "intel";
|
|
repo = "intel-cmt-cat";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Sbxfa9F+TSv2A8nilrB0PD312v1qN++k8Pezd7wd0PA=";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"NOLDCONFIG=y"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "User space software for Intel(R) Resource Director Technology";
|
|
homepage = "https://github.com/intel/intel-cmt-cat";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ arkivm ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|