Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
985 B
Nix
44 lines
985 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-nJc1G9R0+o22H1KiBtzfdcIIfKrD+Dksl7HsZ2ICD7U=";
|
|
|
|
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";
|
|
};
|
|
}
|