mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
25 lines
650 B
Nix
25 lines
650 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "24.05";
|
|
pname = "intel-cmt-cat";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "intel";
|
|
repo = "intel-cmt-cat";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-e4sbQNpUCZaZDhLLRVDXHXsEelZaZIdc8n3ksUnAkKQ=";
|
|
};
|
|
|
|
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" ];
|
|
};
|
|
}
|