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

44 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoconf, automake, libtool
, pkgconfig, dbus, dbus-glib, libxml2 }:
2014-08-14 02:17:55 +02:00
stdenv.mkDerivation rec {
pname = "thermald";
2019-12-09 23:33:23 +01:00
version = "1.9.1";
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}";
2019-12-09 23:33:23 +01:00
sha256 = "0iagc3jqpnh6q2fa1gx4wx6r8qg0556j60xr159zqg95djr4dv99";
2014-08-14 02:17:55 +02:00
};
2015-06-12 02:30:47 +02:00
nativeBuildInputs = [ pkgconfig ];
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 = ''
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=${placeholder "out"}/etc"
"--localstatedir=/var"
"--with-dbus-sys-dir=${placeholder "out"}/share/dbus-1/system.d"
"--with-systemdsystemunitdir=${placeholder "out"}/etc/systemd/system"
];
postInstall = ''
cp ./data/thermal-conf.xml $out/etc/thermald/
'';
2014-08-14 02:17:55 +02:00
2015-06-12 02:30:47 +02:00
meta = with stdenv.lib; {
2014-08-14 02:17:55 +02:00
description = "Thermal Daemon";
homepage = "https://01.org/linux-thermal-daemon";
2015-06-12 02:30:47 +02:00
license = licenses.gpl2;
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
};
}