46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
32 lines
886 B
Nix
32 lines
886 B
Nix
{ stdenv, fetchzip, bison, flex, which, perl
|
|
, sensord ? false, rrdtool ? null
|
|
}:
|
|
|
|
assert sensord -> rrdtool != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lm-sensors";
|
|
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;
|
|
};
|
|
}
|