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