4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
35 lines
906 B
Nix
35 lines
906 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, cudatoolkit, ncurses, addOpenGLRunpath }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nvtop";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Syllo";
|
|
repo = "nvtop";
|
|
rev = version;
|
|
sha256 = "1h24ppdz7l6l0znwbgir49f7r1fshzjavc6i5j33c6bvr318dpqb";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DNVML_INCLUDE_DIRS=${cudatoolkit}/include"
|
|
"-DNVML_LIBRARIES=${cudatoolkit}/targets/x86_64-linux/lib/stubs/libnvidia-ml.so"
|
|
"-DCMAKE_BUILD_TYPE=Release"
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake addOpenGLRunpath ];
|
|
buildInputs = [ ncurses cudatoolkit ];
|
|
|
|
postFixup = ''
|
|
addOpenGLRunpath $out/bin/nvtop
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A (h)top like task monitor for NVIDIA GPUs";
|
|
homepage = "https://github.com/Syllo/nvtop";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ willibutz ];
|
|
};
|
|
}
|