2018-07-17 22:11:16 +02:00
|
|
|
{ stdenv, fetchFromGitHub, autoconf, automake, libtool
|
|
|
|
, pkgconfig, dbus, dbus-glib, libxml2 }:
|
2014-08-14 02:17:55 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "thermald-${version}";
|
2018-10-03 10:13:31 +02:00
|
|
|
version = "1.8";
|
2016-04-30 02:05:14 +02:00
|
|
|
|
2015-06-12 02:30:47 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "01org";
|
|
|
|
repo = "thermal_daemon";
|
|
|
|
rev = "v${version}";
|
2018-10-03 10:13:31 +02:00
|
|
|
sha256 = "1g1l7k8yxj8bl1ysdx8v6anv1s7xk9j072y44gwki70dy48n7j92";
|
2014-08-14 02:17:55 +02:00
|
|
|
};
|
2015-06-12 02:30:47 +02:00
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-07-17 22:11:16 +02:00
|
|
|
buildInputs = [ autoconf automake libtool dbus dbus-glib libxml2 ];
|
2014-08-14 02:17:55 +02:00
|
|
|
|
|
|
|
patchPhase = ''sed -e 's/upstartconfdir = \/etc\/init/upstartconfdir = $(out)\/etc\/init/' -i data/Makefile.am'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
2018-07-17 22:11:16 +02:00
|
|
|
export PKG_CONFIG_PATH="${dbus.dev}/lib/pkgconfig:$PKG_CONFIG_PATH"
|
2017-01-29 18:07:47 +01:00
|
|
|
./autogen.sh
|
|
|
|
'';
|
2014-08-14 02:17:55 +02:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=$(out)/etc" "--localstatedir=/var"
|
|
|
|
"--with-dbus-sys-dir=$(out)/etc/dbus-1/system.d"
|
|
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
|
|
|
];
|
|
|
|
|
2015-06-12 02:30:47 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-14 02:17:55 +02:00
|
|
|
description = "Thermal Daemon";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://01.org/linux-thermal-daemon;
|
2015-06-12 02:30:47 +02:00
|
|
|
license = licenses.gpl2;
|
2017-12-05 22:15:20 +01:00
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
2015-06-12 02:30:47 +02:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-08-14 02:17:55 +02:00
|
|
|
};
|
|
|
|
}
|