mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
25 lines
576 B
Nix
25 lines
576 B
Nix
{ cmake, fetchFromGitHub, lib, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pcm";
|
|
version = "202405";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "opcm";
|
|
repo = "pcm";
|
|
rev = version;
|
|
hash = "sha256-yEe1lWbvafc3N3+K9WMMlIXVVX+fVO8QsuKdyIqiKAg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
enableParallelBuilding = true;
|
|
|
|
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" ];
|
|
};
|
|
}
|