blob: dac98e54b6485397dc181d8e983a1bc1e92b6dd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
cmake,
fetchFromGitHub,
lib,
stdenv,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "pcm";
version = "202604";
src = fetchFromGitHub {
owner = "intel";
repo = "pcm";
rev = finalAttrs.version;
hash = "sha256-TWE/5rsCCfoKDAy9i9YDRiUXVnqAX7I08Oq6QgCbzaY=";
};
nativeBuildInputs = [ cmake ];
enableParallelBuilding = true;
meta = {
description = "Processor counter monitor";
homepage = "https://www.intel.com/software/pcm";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ roosemberth ];
platforms = [ "x86_64-linux" ];
};
})
|