nixpkgs/pkgs/os-specific/linux/intel-cmt-cat/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
650 B
Nix
Raw Normal View History

2021-11-09 21:28:35 +00:00
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
2022-12-16 09:12:51 +00:00
version = "4.5.0";
2021-11-09 21:28:35 +00:00
pname = "intel-cmt-cat";
src = fetchFromGitHub {
owner = "intel";
repo = "intel-cmt-cat";
rev = "v${version}";
2022-12-16 09:12:51 +00:00
sha256 = "sha256-gjJtwEDvPW0JDwlIUXSmv1wm4TknKsE/BLKHiqIgjho=";
2021-11-09 21:28:35 +00:00
};
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" ];
};
}