intel-cmt-cat: init at 4.2.0 (#144190)

This commit is contained in:
arkivm 2021-11-09 13:28:35 -08:00 committed by GitHub
parent 9975de2d4e
commit 7f99b55db7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
version = "4.2.0";
pname = "intel-cmt-cat";
src = fetchFromGitHub {
owner = "intel";
repo = "intel-cmt-cat";
rev = "v${version}";
sha256 = "sha256-k66FZI76d9HcWEMwEgOlObdPmRhuK5h2GKXOzUY0BKQ=";
};
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" ];
};
}

View File

@ -21869,6 +21869,8 @@ with pkgs;
intel2200BGFirmware = callPackage ../os-specific/linux/firmware/intel2200BGFirmware { };
intel-cmt-cat = callPackage ../os-specific/linux/intel-cmt-cat { };
intel-compute-runtime = callPackage ../os-specific/linux/intel-compute-runtime { };
intel-ocl = callPackage ../os-specific/linux/intel-ocl { };