pcm: 202112 -> 202211
Signed-off-by: Roosembert Palacios <roosemberth@posteo.ch>
This commit is contained in:
parent
b259851e21
commit
c446feba9b
1 changed files with 4 additions and 8 deletions
|
@ -1,23 +1,19 @@
|
|||
{ lib, stdenv, fetchFromGitHub }:
|
||||
{ cmake, fetchFromGitHub, lib, stdenv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pcm";
|
||||
version = "202112";
|
||||
version = "202211";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "opcm";
|
||||
repo = "pcm";
|
||||
rev = version;
|
||||
sha256 = "sha256-uuQvj8BcUmuYDwV4r3oqkT+QTcSFcGjBeGUM2NZRFcA=";
|
||||
hash = "sha256-/OSBzJ81xqw5LfS61DS7M33oDmfxDEzcU0NTVVbwWyI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
enableParallelBuilding = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp pcm*.x $out/bin
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Processor counter monitor";
|
||||
homepage = "https://www.intel.com/software/pcm";
|
||||
|
|
Loading…
Reference in a new issue