2018-07-17 21:11:16 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoconf, automake, libtool
|
|
|
|
, pkgconfig, dbus, dbus-glib, libxml2 }:
|
2014-08-14 01:17:55 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "thermald";
|
2019-12-09 22:33:23 +00:00
|
|
|
version = "1.9.1";
|
2016-04-30 01:05:14 +01:00
|
|
|
|
2015-06-12 01:30:47 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "01org";
|
|
|
|
repo = "thermal_daemon";
|
|
|
|
rev = "v${version}";
|
2019-12-09 22:33:23 +00:00
|
|
|
sha256 = "0iagc3jqpnh6q2fa1gx4wx6r8qg0556j60xr159zqg95djr4dv99";
|
2014-08-14 01:17:55 +01:00
|
|
|
};
|
2015-06-12 01:30:47 +01:00
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-07-17 21:11:16 +01:00
|
|
|
buildInputs = [ autoconf automake libtool dbus dbus-glib libxml2 ];
|
2014-08-14 01:17:55 +01:00
|
|
|
|
|
|
|
patchPhase = ''sed -e 's/upstartconfdir = \/etc\/init/upstartconfdir = $(out)\/etc\/init/' -i data/Makefile.am'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
2018-07-17 21:11:16 +01:00
|
|
|
export PKG_CONFIG_PATH="${dbus.dev}/lib/pkgconfig:$PKG_CONFIG_PATH"
|
2017-01-29 17:07:47 +00:00
|
|
|
./autogen.sh
|
|
|
|
'';
|
2014-08-14 01:17:55 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
2019-09-16 03:41:02 +01:00
|
|
|
"--sysconfdir=${placeholder "out"}/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--with-dbus-sys-dir=${placeholder "out"}/share/dbus-1/system.d"
|
|
|
|
"--with-systemdsystemunitdir=${placeholder "out"}/etc/systemd/system"
|
2020-04-09 20:03:26 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
cp ./data/thermal-conf.xml $out/etc/thermald/
|
|
|
|
'';
|
2014-08-14 01:17:55 +01:00
|
|
|
|
2015-06-12 01:30:47 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-14 01:17:55 +01:00
|
|
|
description = "Thermal Daemon";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://01.org/linux-thermal-daemon";
|
2015-06-12 01:30:47 +01:00
|
|
|
license = licenses.gpl2;
|
2017-12-05 21:15:20 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|