lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.11-beta 25 lines 650 B view raw
1{ lib, stdenv, fetchFromGitHub }: 2 3stdenv.mkDerivation rec { 4 version = "23.11"; 5 pname = "intel-cmt-cat"; 6 7 src = fetchFromGitHub { 8 owner = "intel"; 9 repo = "intel-cmt-cat"; 10 rev = "v${version}"; 11 sha256 = "sha256-/OSU/7QR8NAjcAIo+unVQfORvCH5VpjfRn5sIrCxwbE="; 12 }; 13 14 enableParallelBuilding = true; 15 16 makeFlags = [ "PREFIX=$(out)" "NOLDCONFIG=y" ]; 17 18 meta = with lib; { 19 description = "User space software for Intel(R) Resource Director Technology"; 20 homepage = "https://github.com/intel/intel-cmt-cat"; 21 license = licenses.bsd3; 22 maintainers = with maintainers; [ arkivm ]; 23 platforms = [ "x86_64-linux" ]; 24 }; 25}