nvtop: fixed build with drm, added more arm gpu support
This commit is contained in:
parent
c0d67ddff4
commit
7c3a738418
5 changed files with 113 additions and 105 deletions
|
@ -105,6 +105,8 @@ The pre-existing [services.ankisyncd](#opt-services.ankisyncd.enable) has been m
|
||||||
|
|
||||||
- `idris2` was updated to v0.7.0. This version introduces breaking changes. Check out the [changelog](https://github.com/idris-lang/Idris2/blob/v0.7.0/CHANGELOG.md#v070) for details.
|
- `idris2` was updated to v0.7.0. This version introduces breaking changes. Check out the [changelog](https://github.com/idris-lang/Idris2/blob/v0.7.0/CHANGELOG.md#v070) for details.
|
||||||
|
|
||||||
|
- `nvtop` family of packages was reorganized into nested attrset. `nvtop` has been renamed to `nvtopPackages.full`, and all `nvtop-{amd,nvidia,intel,msm}` packages are now named as `nvtopPackages.{amd,nvidia,intel,msm}`
|
||||||
|
|
||||||
- `neo4j` has been updated to 5, you may want to read the [release notes for Neo4j 5](https://neo4j.com/release-notes/database/neo4j-5/)
|
- `neo4j` has been updated to 5, you may want to read the [release notes for Neo4j 5](https://neo4j.com/release-notes/database/neo4j-5/)
|
||||||
|
|
||||||
- `services.neo4j.allowUpgrade` was removed and no longer has any effect. Neo4j 5 supports automatic rolling upgrades.
|
- `services.neo4j.allowUpgrade` was removed and no longer has any effect. Neo4j 5 supports automatic rolling upgrades.
|
||||||
|
|
90
pkgs/tools/system/nvtop/build-nvtop.nix
Normal file
90
pkgs/tools/system/nvtop/build-nvtop.nix
Normal file
|
@ -0,0 +1,90 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
, gtest
|
||||||
|
, cudatoolkit
|
||||||
|
, libdrm
|
||||||
|
, ncurses
|
||||||
|
, testers
|
||||||
|
, udev
|
||||||
|
, addOpenGLRunpath
|
||||||
|
, amd ? false
|
||||||
|
, intel ? false
|
||||||
|
, msm ? false
|
||||||
|
, nvidia ? false
|
||||||
|
, apple ? false
|
||||||
|
, panfrost ? false
|
||||||
|
, panthor ? false
|
||||||
|
, ascend ? false
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
drm-postFixup = ''
|
||||||
|
patchelf \
|
||||||
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
||||||
|
--set-rpath "${lib.makeLibraryPath [ libdrm ncurses udev ]}" \
|
||||||
|
$out/bin/nvtop
|
||||||
|
'';
|
||||||
|
needDrm = (amd || msm || panfrost || panthor);
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
pname = "nvtop";
|
||||||
|
version = "3.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Syllo";
|
||||||
|
repo = "nvtop";
|
||||||
|
rev = finalAttrs.version;
|
||||||
|
hash = "sha256-MkkBY2PR6FZnmRMqv9MWqwPWRgixfkUQW5TWJtHEzwA=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cmakeFlags = with lib.strings; [
|
||||||
|
(cmakeBool "BUILD_TESTING" true)
|
||||||
|
(cmakeBool "USE_LIBUDEV_OVER_LIBSYSTEMD" true)
|
||||||
|
(cmakeBool "AMDGPU_SUPPORT" amd)
|
||||||
|
(cmakeBool "NVIDIA_SUPPORT" nvidia)
|
||||||
|
(cmakeBool "INTEL_SUPPORT" intel)
|
||||||
|
(cmakeBool "APPLE_SUPPORT" apple)
|
||||||
|
(cmakeBool "MSM_SUPPORT" msm)
|
||||||
|
(cmakeBool "PANFROST_SUPPORT" panfrost)
|
||||||
|
(cmakeBool "PANTHOR_SUPPORT" panthor)
|
||||||
|
(cmakeBool "ASCEND_SUPPORT" ascend)
|
||||||
|
];
|
||||||
|
nativeBuildInputs = [ cmake gtest ] ++ lib.optional nvidia addOpenGLRunpath;
|
||||||
|
|
||||||
|
buildInputs = with lib; [ ncurses udev ]
|
||||||
|
++ optional nvidia cudatoolkit
|
||||||
|
++ optional needDrm libdrm
|
||||||
|
;
|
||||||
|
|
||||||
|
# this helps cmake to find <drm.h>
|
||||||
|
env.NIX_CFLAGS_COMPILE = lib.optionalString needDrm "-isystem ${lib.getDev libdrm}/include/libdrm";
|
||||||
|
|
||||||
|
# ordering of fixups is important
|
||||||
|
postFixup = (lib.optionalString needDrm drm-postFixup) + (lib.optionalString nvidia "addOpenGLRunpath $out/bin/nvtop");
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
tests.version = testers.testVersion {
|
||||||
|
inherit (finalAttrs) version;
|
||||||
|
package = finalAttrs.finalPackage;
|
||||||
|
command = "nvtop --version";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A (h)top like task monitor for AMD, Adreno, Intel and NVIDIA GPUs";
|
||||||
|
longDescription = ''
|
||||||
|
Nvtop stands for Neat Videocard TOP, a (h)top like task monitor for AMD, Adreno, Intel and NVIDIA GPUs.
|
||||||
|
It can handle multiple GPUs and print information about them in a htop familiar way.
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/Syllo/nvtop";
|
||||||
|
changelog = "https://github.com/Syllo/nvtop/releases/tag/${finalAttrs.version}";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ willibutz gbtb anthonyroussel ];
|
||||||
|
mainProgram = "nvtop";
|
||||||
|
};
|
||||||
|
})
|
|
@ -1,83 +1,18 @@
|
||||||
{ lib
|
{ callPackage }:
|
||||||
, stdenv
|
|
||||||
, fetchFromGitHub
|
|
||||||
, cmake
|
|
||||||
, gtest
|
|
||||||
, cudatoolkit
|
|
||||||
, libdrm
|
|
||||||
, ncurses
|
|
||||||
, nvtop
|
|
||||||
, testers
|
|
||||||
, udev
|
|
||||||
, addOpenGLRunpath
|
|
||||||
, amd ? true
|
|
||||||
, intel ? true
|
|
||||||
, msm ? true
|
|
||||||
, nvidia ? true
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
let
|
||||||
nvidia-postFixup = "addOpenGLRunpath $out/bin/nvtop";
|
# this GPU families are supported "by-default" upstream (see https://github.com/Syllo/nvtop/blob/3a69c2d060298cd6f92cb09db944eded98be1c23/CMakeLists.txt#L81)
|
||||||
libPath = lib.makeLibraryPath [ libdrm ncurses udev ];
|
# coincidentally, these families are also easy to build in nixpkgs at the moment
|
||||||
drm-postFixup = ''
|
defaultGPUFamilies = [ "amd" "intel" "msm" "nvidia" "panfrost" "panthor" ];
|
||||||
patchelf \
|
# these GPU families are partially supported upstream, they are also tricky to build in nixpkgs
|
||||||
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
# volunteers with specific hardware needed to build and test these package variants
|
||||||
--set-rpath "${libPath}" \
|
additionalGPUFamilies = [ "apple" "ascend" ];
|
||||||
$out/bin/nvtop
|
defaultSupport = builtins.listToAttrs (builtins.map (gpu: { name = gpu; value = true; }) defaultGPUFamilies);
|
||||||
'';
|
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
{
|
||||||
pname = "nvtop";
|
full = callPackage ./build-nvtop.nix defaultSupport; #this package supports all default GPU families
|
||||||
version = "3.1.0";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "Syllo";
|
|
||||||
repo = "nvtop";
|
|
||||||
rev = version;
|
|
||||||
hash = "sha256-MkkBY2PR6FZnmRMqv9MWqwPWRgixfkUQW5TWJtHEzwA=";
|
|
||||||
};
|
|
||||||
|
|
||||||
cmakeFlags = with lib; [
|
|
||||||
"-DBUILD_TESTING=ON"
|
|
||||||
"-DUSE_LIBUDEV_OVER_LIBSYSTEMD=ON"
|
|
||||||
] ++ optional nvidia "-DNVML_INCLUDE_DIRS=${cudatoolkit}/include"
|
|
||||||
++ optional nvidia "-DNVML_LIBRARIES=${cudatoolkit}/targets/x86_64-linux/lib/stubs/libnvidia-ml.so"
|
|
||||||
++ optional (!amd) "-DAMDGPU_SUPPORT=OFF"
|
|
||||||
++ optional (!intel) "-DINTEL_SUPPORT=OFF"
|
|
||||||
++ optional (!msm) "-DMSM_SUPPORT=OFF"
|
|
||||||
++ optional (!nvidia) "-DNVIDIA_SUPPORT=OFF"
|
|
||||||
++ optional (amd || msm) "-DLibdrm_INCLUDE_DIRS=${libdrm}/lib/stubs/libdrm.so.2"
|
|
||||||
;
|
|
||||||
nativeBuildInputs = [ cmake gtest ] ++ lib.optional nvidia addOpenGLRunpath;
|
|
||||||
buildInputs = with lib; [ ncurses udev ]
|
|
||||||
++ optional nvidia cudatoolkit
|
|
||||||
++ optional (amd || msm) libdrm
|
|
||||||
;
|
|
||||||
|
|
||||||
# ordering of fixups is important
|
|
||||||
postFixup = (lib.optionalString (amd || msm) drm-postFixup) + (lib.optionalString nvidia nvidia-postFixup);
|
|
||||||
|
|
||||||
doCheck = true;
|
|
||||||
|
|
||||||
passthru = {
|
|
||||||
tests.version = testers.testVersion {
|
|
||||||
inherit version;
|
|
||||||
package = nvtop;
|
|
||||||
command = "nvtop --version";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "A (h)top like task monitor for AMD, Adreno, Intel and NVIDIA GPUs";
|
|
||||||
longDescription = ''
|
|
||||||
Nvtop stands for Neat Videocard TOP, a (h)top like task monitor for AMD, Adreno, Intel and NVIDIA GPUs.
|
|
||||||
It can handle multiple GPUs and print information about them in a htop familiar way.
|
|
||||||
'';
|
|
||||||
homepage = "https://github.com/Syllo/nvtop";
|
|
||||||
changelog = "https://github.com/Syllo/nvtop/releases/tag/${version}";
|
|
||||||
license = licenses.gpl3Only;
|
|
||||||
platforms = platforms.linux;
|
|
||||||
maintainers = with maintainers; [ willibutz gbtb anthonyroussel ];
|
|
||||||
mainProgram = "nvtop";
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
# additional packages with only one specific GPU family support
|
||||||
|
// builtins.listToAttrs (builtins.map (gpu: { name = gpu; value = (callPackage ./build-nvtop.nix { "${gpu}" = true; }); }) defaultGPUFamilies)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -768,6 +768,11 @@ mapAliases ({
|
||||||
noto-fonts-extra = noto-fonts; # Added 2023-04-08
|
noto-fonts-extra = noto-fonts; # Added 2023-04-08
|
||||||
NSPlist = nsplist; # Added 2024-01-05
|
NSPlist = nsplist; # Added 2024-01-05
|
||||||
nvidia-thrust = throw "nvidia-thrust has been removed because the project was deprecated; use cudaPackages.cuda_cccl";
|
nvidia-thrust = throw "nvidia-thrust has been removed because the project was deprecated; use cudaPackages.cuda_cccl";
|
||||||
|
nvtop = lib.warn "nvtop has been renamed to nvtopPackages.full" nvtopPackages.full; # Added 2024-02-25
|
||||||
|
nvtop-amd = lib.warn "nvtop-amd has been renamed to nvtopPackages.amd" nvtopPackages.amd; # Added 2024-02-25
|
||||||
|
nvtop-nvidia = lib.warn "nvtop-nvidia has been renamed to nvtopPackages.nvidia" nvtopPackages.nvidia; # Added 2024-02-25
|
||||||
|
nvtop-intel = lib.warn "nvtop-intel has been renamed to nvtopPackages.intel" nvtopPackages.intel; # Added 2024-02-25
|
||||||
|
nvtop-msm = lib.warn "nvtop-msm has been renamed to nvtopPackages.msm" nvtopPackages.msm; # Added 2024-02-25
|
||||||
|
|
||||||
### O ###
|
### O ###
|
||||||
|
|
||||||
|
|
|
@ -24069,31 +24069,7 @@ with pkgs;
|
||||||
|
|
||||||
nvitop = callPackage ../tools/system/nvitop { };
|
nvitop = callPackage ../tools/system/nvitop { };
|
||||||
|
|
||||||
nvtop = callPackage ../tools/system/nvtop { };
|
nvtopPackages = recurseIntoAttrs (import ../tools/system/nvtop { inherit callPackage; });
|
||||||
nvtop-amd = (callPackage ../tools/system/nvtop {
|
|
||||||
amd = true;
|
|
||||||
intel = false;
|
|
||||||
msm = false;
|
|
||||||
nvidia = false;
|
|
||||||
}).overrideAttrs { pname = "nvtop-amd"; };
|
|
||||||
nvtop-intel = (callPackage ../tools/system/nvtop {
|
|
||||||
amd = false;
|
|
||||||
intel = true;
|
|
||||||
msm = false;
|
|
||||||
nvidia = false;
|
|
||||||
}).overrideAttrs { pname = "nvtop-intel"; };
|
|
||||||
nvtop-msm = (callPackage ../tools/system/nvtop {
|
|
||||||
amd = false;
|
|
||||||
intel = false;
|
|
||||||
msm = true;
|
|
||||||
nvidia = false;
|
|
||||||
}).overrideAttrs { pname = "nvtop-msm"; };
|
|
||||||
nvtop-nvidia = (callPackage ../tools/system/nvtop {
|
|
||||||
amd = false;
|
|
||||||
intel = false;
|
|
||||||
msm = false;
|
|
||||||
nvidia = true;
|
|
||||||
}).overrideAttrs { pname = "nvtop-nvidia"; };
|
|
||||||
|
|
||||||
ocl-icd = callPackage ../development/libraries/ocl-icd { };
|
ocl-icd = callPackage ../development/libraries/ocl-icd { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue