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

27 lines
579 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
2020-06-02 17:09:06 +02:00
version = "202005";
pname = "pcm";
src = fetchFromGitHub {
owner = "opcm";
repo = "pcm";
2019-09-09 01:38:31 +02:00
rev = version;
2020-06-02 17:09:06 +02:00
sha256 = "10dyjgbxb263i64p4zfvy6xjb2hp7wg2k6ygsr8ikjawllxp8m01";
};
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";
license = licenses.bsd3;
maintainers = with maintainers; [ roosemberth ];
platforms = [ "x86_64-linux" ];
};
}