My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/os-specific/linux/intel-cmt-cat/default.nix

25 lines
650 B

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
version = "4.3.0";
pname = "intel-cmt-cat";
src = fetchFromGitHub {
owner = "intel";
repo = "intel-cmt-cat";
rev = "v${version}";
sha256 = "sha256-9XZuSHWcAFN5otBfG8xE4gTIDixw7mYnHT/CTjyOvwo=";
};
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" ];
};
}