3
0
Fork 0
forked from mirrors/nixpkgs

numatop: init at 2.1

This commit is contained in:
Will Dietz 2019-04-14 12:26:05 -05:00
parent 4907b2165b
commit 0d600ae89e
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchurl, pkgconfig, numactl, ncurses, check }:
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";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ numactl ncurses ];
checkInputs = [ check ];
doCheck = true;
meta = with stdenv.lib; {
description = "observation tool for runtime memory locality characterization and analysis of processes and threads running on a NUMA system";
homepage = https://01.org/numatop;
license = licenses.bsd3;
maintainers = with maintainers; [ dtzWill ];
platforms = stdenv.lib.platforms.all;
};
}

View file

@ -1607,6 +1607,8 @@ in
long-shebang = callPackage ../misc/long-shebang {};
numatop = callPackage ../os-specific/linux/numatop { };
iio-sensor-proxy = callPackage ../os-specific/linux/iio-sensor-proxy { };
ipvsadm = callPackage ../os-specific/linux/ipvsadm { };