nixpkgs/pkgs/tools/system/nvtop/default.nix

31 lines
812 B
Nix
Raw Normal View History

2018-07-21 17:04:04 +00:00
{ stdenv, fetchFromGitHub, cmake, nvidia_x11, cudatoolkit, ncurses }:
stdenv.mkDerivation rec {
pname = "nvtop";
2019-01-25 01:19:12 +00:00
version = "1.0.0";
2018-07-21 17:04:04 +00:00
src = fetchFromGitHub {
owner = "Syllo";
repo = "nvtop";
rev = version;
2019-01-25 01:19:12 +00:00
sha256 = "1b6yz54xddip1r0k8cbqg41dpyhds18fj29bj3yf40xvysklb0f4";
2018-07-21 17:04:04 +00:00
};
cmakeFlags = [
"-DNVML_INCLUDE_DIRS=${cudatoolkit}/include"
"-DNVML_LIBRARIES=${nvidia_x11}/lib/libnvidia-ml.so"
2018-07-21 17:04:04 +00:00
"-DCMAKE_BUILD_TYPE=Release"
];
nativeBuildInputs = [ cmake ];
buildInputs = [ ncurses nvidia_x11 cudatoolkit ];
meta = with stdenv.lib; {
description = "A (h)top like like task monitor for NVIDIA GPUs";
homepage = https://github.com/Syllo/nvtop;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ willibutz ];
};
}