summary refs log blame commit diff
path: root/pkgs/os-specific/linux/pcm/default.nix
blob: c0b8b59ebb51cfa69b179bb1a29b1ea41f0790a6 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                 

                         
                     
                



                         
                  
                                                                   






                      
                    
                                              
                                                    




                                                    
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  version = "202101";
  pname = "pcm";

  src = fetchFromGitHub {
    owner = "opcm";
    repo = "pcm";
    rev = version;
    sha256 = "sha256-xiC9XDuFcAzD2lVuzBWUvHy1Z1shEXM2KPFabKvgh1Y=";
  };

  installPhase = ''
    mkdir -p $out/bin
    cp pcm*.x $out/bin
  '';

  meta = with lib; {
    description = "Processor counter monitor";
    homepage = "https://www.intel.com/software/pcm";
    license = licenses.bsd3;
    maintainers = with maintainers; [ roosemberth ];
    platforms = [ "x86_64-linux" ];
  };
}