2018-03-13 12:33:05 -07:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-07-27 14:50:43 -07:00
|
|
|
version = "202007";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "pcm";
|
2018-03-13 12:33:05 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "opcm";
|
|
|
|
repo = "pcm";
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2020-07-27 14:50:43 -07:00
|
|
|
sha256 = "1qqp51mvi52jvf6zf4g1fzv6nh9p37y0i7r2y273gwcdygbidzma";
|
2018-03-13 12:33:05 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp pcm*.x $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Processor counter monitor";
|
2020-03-23 13:40:00 -07:00
|
|
|
homepage = "https://www.intel.com/software/pcm";
|
2018-03-13 12:33:05 -07:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ roosemberth ];
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|