2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2018-03-13 20:33:05 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-17 14:18:43 +02:00
|
|
|
version = "202107";
|
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;
|
2021-08-17 14:18:43 +02:00
|
|
|
sha256 = "sha256-2fN+jS6+BpodjjN+TV67uiNgZ0eblWjzbyU3CDp9ee0=";
|
2018-03-13 20:33:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp pcm*.x $out/bin
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-03-13 20:33:05 +01:00
|
|
|
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" ];
|
|
|
|
};
|
|
|
|
}
|