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