fan2go: 0.8.1 -> 0.9.0

This commit is contained in:
Matthew Toohey 2024-09-28 20:29:14 -04:00
parent 8637e879e4
commit 2095eae5ce

View File

@ -1,21 +1,26 @@
{ buildGoModule, fetchFromGitHub, lib, lm_sensors }: { buildGo123Module, fetchFromGitHub, lib, lm_sensors }:
buildGoModule rec { buildGo123Module rec {
pname = "fan2go"; pname = "fan2go";
version = "0.8.1"; version = "0.9.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "markusressel"; owner = "markusressel";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-w2Qwu3ZmBkoA86xa7V6pnIBAbfG9mtkAHePkQjefRW8="; hash = "sha256-eSHeHBzDvzsDAck0zexwR8drasisvlQNTeowv92E2uc=";
}; };
vendorHash = "sha256-6OEdl7ie0dTjXrG//Fvcg4ZyTW/mhrUievDljY2zi/4="; vendorHash = "sha256-ad0e/cxbcU/KfPDOdD46KdCcvns83dgGDAyLLQiGyiA=";
postConfigure = '' postConfigure = ''
substituteInPlace vendor/github.com/md14454/gosensors/gosensors.go \ substituteInPlace vendor/github.com/md14454/gosensors/gosensors.go \
--replace '"/etc/sensors3.conf"' '"${lm_sensors}/etc/sensors3.conf"' --replace-fail '"/etc/sensors3.conf"' '"${lm_sensors}/etc/sensors3.conf"'
# Uses /usr/bin/echo, and even if we patch that, it refuses to execute any
# binary without being able to confirm that it's owned by root, which isn't
# possible under the sandbox.
rm internal/fans/cmd_test.go
''; '';
CGO_CFLAGS = "-I ${lm_sensors}/include"; CGO_CFLAGS = "-I ${lm_sensors}/include";