2018-03-13 12:33:05 -07:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-03-23 13:40:00 -07:00
|
|
|
version = "202003";
|
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-03-23 13:40:00 -07:00
|
|
|
sha256 = "1f83dhzrzgcyv5j5xxibvywvpg8sgf1g72f5x40cdb4149nwbfra";
|
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" ];
|
|
|
|
};
|
|
|
|
}
|