commit
a3205ea5f3
3 changed files with 33 additions and 0 deletions
|
@ -111,6 +111,11 @@
|
|||
github = "Profpatsch";
|
||||
name = "Profpatsch";
|
||||
};
|
||||
roosemberth = {
|
||||
email = "roosembert.palacios+nixpkgs@gmail.com";
|
||||
github = "roosemberth";
|
||||
name = "Roosembert (Roosemberth) Palacios";
|
||||
};
|
||||
SShrike = {
|
||||
email = "severen@shrike.me";
|
||||
github = "severen";
|
||||
|
|
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" ];
|
||||
};
|
||||
}
|
|
@ -13101,6 +13101,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