nixpkgs/pkgs/os-specific/linux/lm-sensors/default.nix

52 lines
1.3 KiB
Nix
Raw Normal View History

2021-09-19 16:07:31 +01:00
{ lib
, stdenv
, fetchFromGitHub
, bash
2021-09-19 16:07:31 +01:00
, bison
, flex
, which
, perl
, sensord ? false
, rrdtool ? null
}:
assert sensord -> rrdtool != null;
stdenv.mkDerivation rec {
pname = "lm-sensors";
version = "3.6.0";
2021-09-19 16:07:31 +01:00
dashedVersion = lib.replaceStrings [ "." ] [ "-" ] version;
2021-09-19 16:07:31 +01:00
src = fetchFromGitHub {
owner = "lm-sensors";
repo = "lm-sensors";
rev = "V${dashedVersion}";
hash = "sha256-9lfHCcODlS7sZMjQhK0yQcCBEoGyZOChx/oM0CU37sY=";
};
nativeBuildInputs = [ bison flex which ];
# bash is required for correctly replacing the shebangs in all tools for cross-compilation.
buildInputs = [ bash perl ]
2021-09-19 16:07:31 +01:00
++ lib.optional sensord rrdtool;
2020-10-04 18:57:53 +01:00
makeFlags = [
"PREFIX=${placeholder "out"}"
"CC=${stdenv.cc.targetPrefix}cc"
"AR=${stdenv.cc.targetPrefix}ar"
2021-01-15 14:45:37 +00:00
] ++ lib.optional sensord "PROG_EXTRA=sensord";
installFlags = [
"ETCDIR=${placeholder "out"}/etc"
];
meta = with lib; {
homepage = "https://hwmon.wiki.kernel.org/lm_sensors";
changelog = "https://raw.githubusercontent.com/lm-sensors/lm-sensors/V${dashedVersion}/CHANGES";
description = "Tools for reading hardware sensors";
license = with licenses; [ lgpl21Plus gpl2Plus ];
2021-11-21 04:51:05 +00:00
maintainers = with maintainers; [ pmy ];
2018-08-30 20:35:57 +01:00
platforms = platforms.linux;
2021-04-27 18:25:57 +01:00
mainProgram = "sensors";
};
}