2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, numactl, ncurses, check }:
|
2019-04-14 18:26:05 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "numatop";
|
|
|
|
version = "2.1";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/intel/${pname}/releases/download/v${version}/${pname}-v${version}.tar.xz";
|
|
|
|
sha256 = "1s7psq1xyswj0lpx10zg5lnppav2xy9safkfx3rssrs9c2fp5d76";
|
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-04-14 18:26:05 +01:00
|
|
|
buildInputs = [ numactl ncurses ];
|
|
|
|
checkInputs = [ check ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-04-14 22:04:40 +01:00
|
|
|
description = "Tool for runtime memory locality characterization and analysis of processes and threads on a NUMA system";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://01.org/numatop";
|
2019-04-14 18:26:05 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
2019-04-15 14:01:36 +01:00
|
|
|
platforms = [
|
|
|
|
{ kernel.name = "linux"; cpu.family = "x86"; }
|
|
|
|
{ kernel.name = "linux"; cpu.family = "power"; }
|
|
|
|
];
|
2019-04-14 18:26:05 +01:00
|
|
|
};
|
|
|
|
}
|