2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2018-03-13 19:33:05 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "pcm";
|
2021-11-02 11:25:43 +00:00
|
|
|
version = "202110";
|
2018-03-13 19:33:05 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "opcm";
|
|
|
|
repo = "pcm";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2021-11-02 11:25:43 +00:00
|
|
|
sha256 = "sha256-YcTsC1ceCXKALroyZtgRYpqK3ysJhgzRJ8fBiCx7CCM=";
|
2018-03-13 19:33:05 +00:00
|
|
|
};
|
|
|
|
|
2021-11-02 11:25:43 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-03-13 19:33:05 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp pcm*.x $out/bin
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-03-13 19:33:05 +00:00
|
|
|
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" ];
|
|
|
|
};
|
|
|
|
}
|