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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
610 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "pcm";
2022-01-02 06:19:35 +00:00
version = "202112";
src = fetchFromGitHub {
owner = "opcm";
repo = "pcm";
2019-09-08 23:38:31 +00:00
rev = version;
2022-01-02 06:19:35 +00:00
sha256 = "sha256-uuQvj8BcUmuYDwV4r3oqkT+QTcSFcGjBeGUM2NZRFcA=";
};
enableParallelBuilding = true;
installPhase = ''
mkdir -p $out/bin
cp pcm*.x $out/bin
'';
meta = with lib; {
description = "Processor counter monitor";
2020-03-23 20:40:00 +00:00
homepage = "https://www.intel.com/software/pcm";
license = licenses.bsd3;
maintainers = with maintainers; [ roosemberth ];
platforms = [ "x86_64-linux" ];
};
}