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

44 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoconf, automake, libtool
2020-04-25 14:28:21 +00:00
, pkgconfig, dbus, dbus-glib, libxml2, autoconf-archive }:
2014-08-14 00:17:55 +00:00
stdenv.mkDerivation rec {
pname = "thermald";
2020-07-07 15:37:47 +00:00
version = "2.2";
2016-04-30 00:05:14 +00:00
2015-06-12 00:30:47 +00:00
src = fetchFromGitHub {
2020-04-25 14:28:21 +00:00
owner = "intel";
2015-06-12 00:30:47 +00:00
repo = "thermal_daemon";
rev = "v${version}";
2020-07-07 15:37:47 +00:00
sha256 = "1nrhv3bypyc48h9smj5cpq63rawm6vqyg3cwkhpz69rgjnf1283m";
2014-08-14 00:17:55 +00:00
};
2015-06-12 00:30:47 +00:00
nativeBuildInputs = [ pkgconfig ];
2020-04-25 14:28:21 +00:00
buildInputs = [ autoconf automake libtool dbus dbus-glib libxml2 autoconf-archive ];
2014-08-14 00:17:55 +00: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 17:07:47 +00:00
./autogen.sh
'';
2014-08-14 00:17:55 +00: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 00:17:55 +00:00
2015-06-12 00:30:47 +00:00
meta = with stdenv.lib; {
2014-08-14 00:17:55 +00:00
description = "Thermal Daemon";
homepage = "https://01.org/linux-thermal-daemon";
2015-06-12 00:30:47 +00:00
license = licenses.gpl2;
platforms = [ "x86_64-linux" "i686-linux" ];
2015-06-12 00:30:47 +00:00
maintainers = with maintainers; [ abbradar ];
2014-08-14 00:17:55 +00:00
};
}