1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/tools/misc/nvfancontrol/default.nix
Someone 2d7db58c2f
Merge pull request #313225 from ereslibre/nvidia-consistent-casing
docs: fix Nvidia casing to be consistent across different places
2024-08-22 16:51:41 +00:00

33 lines
958 B
Nix

{ lib, rustPlatform, fetchFromGitHub, libXNVCtrl, libX11, libXext }:
rustPlatform.buildRustPackage rec {
pname = "nvfancontrol";
version = "0.5.1";
src = fetchFromGitHub {
owner = "foucault";
repo = pname;
rev = version;
sha256 = "sha256-0WBQSnTYVc3sNmZf/KFzznMg9AVsyaBgdx/IvG1dZAw=";
};
cargoHash = "sha256-fEzdghGQSSeyeyiHjw1ggQ38gsETJFl9bq/tizGxIis=";
nativeBuildInputs = [ libXNVCtrl libX11 libXext ];
# Needed for static linking
preConfigure = ''
export LIBRARY_PATH=${libXNVCtrl}/lib:${libX11}/lib:${libXext}/lib
'';
meta = with lib; {
description = "Nvidia dynamic fan control for Linux";
homepage = "https://github.com/foucault/nvfancontrol";
changelog = "https://github.com/foucault/nvfancontrol/releases/tag/${version}";
license = with licenses; [ gpl3Only ];
platforms = platforms.linux;
maintainers = with maintainers; [ devins2518 ];
mainProgram = "nvfancontrol";
};
}