dfd300c81d
Upstream killed the pkgs server but src continues to serve up the exact same content, so we can just point there and all hashes should be unchanged.
33 lines
987 B
Nix
33 lines
987 B
Nix
{ sensord ? false,
|
|
stdenv, fetchurl, bison, flex, which, perl,
|
|
rrdtool ? null
|
|
}:
|
|
|
|
assert sensord -> rrdtool != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lm-sensors-${version}";
|
|
version = "3.4.0"; # don't forget to tweak fedoraproject mirror URL hash
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-${version}.tar.bz2"
|
|
"http://src.fedoraproject.org/repo/pkgs/lm_sensors/lm_sensors-${version}.tar.bz2/c03675ae9d43d60322110c679416901a/lm_sensors-${version}.tar.bz2"
|
|
];
|
|
sha256 = "07q6811l4pp0f7pxr8bk3s97ippb84mx5qdg7v92s9hs10b90mz0";
|
|
};
|
|
|
|
buildInputs = [ bison flex which perl ]
|
|
++ stdenv.lib.optional sensord rrdtool;
|
|
|
|
preBuild = ''
|
|
makeFlagsArray=(PREFIX=$out ETCDIR=$out/etc
|
|
${stdenv.lib.optionalString sensord "PROG_EXTRA=sensord"})
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.lm-sensors.org/;
|
|
description = "Tools for reading hardware sensors";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|