nixpkgs/pkgs/tools/system/thermald/default.nix

75 lines
1.4 KiB
Nix
Raw Normal View History

{ autoconf
, autoconf-archive
, automake
, dbus
, dbus-glib
, docbook_xml_dtd_412
, docbook-xsl-nons
, fetchFromGitHub
, gtk-doc
, libevdev
, libtool
, libxml2
2021-03-14 18:12:53 +00:00
, xz
, pkg-config
, lib, stdenv
, upower
}:
2014-08-14 01:17:55 +01:00
stdenv.mkDerivation rec {
pname = "thermald";
2021-08-15 12:32:18 +01:00
version = "2.4.6";
outputs = [ "out" "devdoc" ];
2016-04-30 01:05:14 +01:00
2015-06-12 01:30:47 +01:00
src = fetchFromGitHub {
2020-04-25 15:28:21 +01:00
owner = "intel";
2015-06-12 01:30:47 +01:00
repo = "thermal_daemon";
rev = "v${version}";
2021-08-15 12:32:18 +01:00
sha256 = "sha256-ZknZznoYVX3dNBIUvER6odv5eNrCV3//CXH1ypCf6tE=";
2014-08-14 01:17:55 +01:00
};
2015-06-12 01:30:47 +01:00
nativeBuildInputs = [
autoconf
autoconf-archive
automake
docbook-xsl-nons
docbook_xml_dtd_412
gtk-doc
libtool
pkg-config
];
2014-08-14 01:17:55 +01:00
buildInputs = [
dbus
dbus-glib
libevdev
libxml2
2021-03-14 18:12:53 +00:00
xz
upower
];
2014-08-14 01:17:55 +01:00
configureFlags = [
"--sysconfdir=${placeholder "out"}/etc"
"--localstatedir=/var"
"--enable-gtk-doc"
"--with-dbus-sys-dir=${placeholder "out"}/share/dbus-1/system.d"
"--with-systemdsystemunitdir=${placeholder "out"}/etc/systemd/system"
];
preConfigure = "NO_CONFIGURE=1 ./autogen.sh";
postInstall = ''
cp ./data/thermal-conf.xml $out/etc/thermald/
'';
2014-08-14 01:17:55 +01:00
meta = with lib; {
2014-08-14 01:17:55 +01:00
description = "Thermal Daemon";
homepage = "https://01.org/linux-thermal-daemon";
changelog = "https://github.com/intel/thermal_daemon/blob/master/README.txt";
license = licenses.gpl2Plus;
platforms = [ "x86_64-linux" "i686-linux" ];
2015-06-12 01:30:47 +01:00
maintainers = with maintainers; [ abbradar ];
2014-08-14 01:17:55 +01:00
};
}