4d5a95770c
GitOrigin-RevId: 3c5319ad3aa51551182ac82ea17ab1c6b0f0df89
51 lines
1.3 KiB
Nix
51 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, IOKit
|
|
, nvidiaSupport ? false
|
|
, makeWrapper
|
|
, llvmPackages
|
|
}:
|
|
|
|
assert nvidiaSupport -> stdenv.isLinux;
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "zenith";
|
|
version = "0.14.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bvaisvil";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-GrrdE9Ih8x8N2HN+1NfxfthfHbufLAT/Ac+ZZWW5Zg8=";
|
|
};
|
|
|
|
# remove cargo config so it can find the linker on aarch64-linux
|
|
postPatch = ''
|
|
rm .cargo/config
|
|
'';
|
|
|
|
cargoHash = "sha256-2VgyUVBcmSlmPSqAWrzWjH5J6Co/rAC9EQCckYzfW2o=";
|
|
|
|
nativeBuildInputs = [ llvmPackages.clang ] ++ lib.optional nvidiaSupport makeWrapper;
|
|
buildInputs = [ llvmPackages.libclang ] ++ lib.optionals stdenv.isDarwin [ IOKit ];
|
|
|
|
buildFeatures = lib.optional nvidiaSupport "nvidia";
|
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
|
|
|
postInstall = lib.optionalString nvidiaSupport ''
|
|
wrapProgram $out/bin/zenith \
|
|
--suffix LD_LIBRARY_PATH : "/run/opengl-driver/lib"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Sort of like top or htop but with zoom-able charts, network, and disk usage"
|
|
+ lib.optionalString nvidiaSupport ", and NVIDIA GPU usage";
|
|
homepage = "https://github.com/bvaisvil/zenith";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bbigras ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|