60b743853b
* lm_sensors: 3.4.0 -> 3.5.0 (#51117) Using releases posted on github, they work and I'm not sure how those fedora URL's are found anyway. * lm_sensors: cleanup
32 lines
896 B
Nix
32 lines
896 B
Nix
{ stdenv, fetchzip, bison, flex, which, perl
|
|
, sensord ? false, rrdtool ? null
|
|
}:
|
|
|
|
assert sensord -> rrdtool != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lm-sensors-${version}";
|
|
version = "3.5.0";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/lm-sensors/lm-sensors/archive/V${stdenv.lib.replaceStrings ["."] ["-"] version}.tar.gz";
|
|
sha256 = "1mdrnb9r01z1xfdm6dpkywvf9yy9a4yzb59paih9sijwmigv19fj";
|
|
};
|
|
|
|
nativeBuildInputs = [ bison flex which ];
|
|
buildInputs = [ perl ]
|
|
++ stdenv.lib.optional sensord rrdtool;
|
|
|
|
preBuild = ''
|
|
makeFlagsArray=(PREFIX=$out ETCDIR=$out/etc
|
|
${stdenv.lib.optionalString sensord "PROG_EXTRA=sensord"})
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://hwmon.wiki.kernel.org/lm_sensors;
|
|
description = "Tools for reading hardware sensors";
|
|
license = with licenses; [ gpl2Plus lgpl21Plus ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|