pcm: init at 201710
Signed-off-by: Roosembert Palacios <roosembert.palacios@epfl.ch>
This commit is contained in:
parent
e955391157
commit
3328709918
2 changed files with 28 additions and 0 deletions
26
pkgs/os-specific/linux/pcm/default.nix
Normal file
26
pkgs/os-specific/linux/pcm/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "201710";
|
||||
name = "pcm-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "opcm";
|
||||
repo = "pcm";
|
||||
rev = "${version}";
|
||||
sha256 = "02rq8739zwwbfrhagvcgf6qpmnswxl9b0qsld26rg6zp91v2npbj";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp pcm*.x $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Processor counter monitor";
|
||||
homepage = https://www.intel.com/software/pcm;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ roosemberth ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
|
@ -13092,6 +13092,8 @@ with pkgs;
|
|||
|
||||
i7z = callPackage ../os-specific/linux/i7z { };
|
||||
|
||||
pcm = callPackage ../os-specific/linux/pcm { };
|
||||
|
||||
ima-evm-utils = callPackage ../os-specific/linux/ima-evm-utils { };
|
||||
|
||||
intel2200BGFirmware = callPackage ../os-specific/linux/firmware/intel2200BGFirmware { };
|
||||
|
|
Loading…
Reference in a new issue