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

35 lines
906 B
Nix
Raw Normal View History

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