nixpkgs/pkgs/os-specific/linux/pcm/default.nix

29 lines
610 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "pcm";
version = "202110";
src = fetchFromGitHub {
owner = "opcm";
repo = "pcm";
2019-09-09 00:38:31 +01:00
rev = version;
sha256 = "sha256-YcTsC1ceCXKALroyZtgRYpqK3ysJhgzRJ8fBiCx7CCM=";
};
enableParallelBuilding = true;
installPhase = ''
mkdir -p $out/bin
cp pcm*.x $out/bin
'';
meta = with lib; {
description = "Processor counter monitor";
2020-03-23 20:40:00 +00:00
homepage = "https://www.intel.com/software/pcm";
license = licenses.bsd3;
maintainers = with maintainers; [ roosemberth ];
platforms = [ "x86_64-linux" ];
};
}