From 0d600ae89e61e726b04095a2a0f8ec45586b6b77 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Sun, 14 Apr 2019 12:26:05 -0500 Subject: numatop: init at 2.1 --- pkgs/os-specific/linux/numatop/default.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pkgs/os-specific/linux/numatop/default.nix (limited to 'pkgs/os-specific/linux/numatop') diff --git a/pkgs/os-specific/linux/numatop/default.nix b/pkgs/os-specific/linux/numatop/default.nix new file mode 100644 index 000000000000..51d3e4c6d2ee --- /dev/null +++ b/pkgs/os-specific/linux/numatop/default.nix @@ -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; + }; +} -- cgit 1.4.1