81 lines
1.5 KiB
Nix
81 lines
1.5 KiB
Nix
{
|
|
autoconf,
|
|
autoconf-archive,
|
|
automake,
|
|
dbus,
|
|
dbus-glib,
|
|
docbook_xml_dtd_412,
|
|
docbook-xsl-nons,
|
|
fetchFromGitHub,
|
|
gtk-doc,
|
|
libevdev,
|
|
libtool,
|
|
libxml2,
|
|
pkg-config,
|
|
lib,
|
|
stdenv,
|
|
upower,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "thermald";
|
|
version = "2.5.8";
|
|
|
|
outputs = [
|
|
"out"
|
|
"devdoc"
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "intel";
|
|
repo = "thermal_daemon";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-aqNaXg+XznIgsMzORcRcwfTI5tBYmSGA2pma2oUu8K4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
autoconf-archive
|
|
automake
|
|
docbook-xsl-nons
|
|
docbook_xml_dtd_412
|
|
gtk-doc
|
|
libtool
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus
|
|
dbus-glib
|
|
libevdev
|
|
libxml2
|
|
upower
|
|
];
|
|
|
|
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/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Thermal Daemon";
|
|
homepage = "https://github.com/intel/thermal_daemon";
|
|
changelog = "https://github.com/intel/thermal_daemon/blob/master/README.txt";
|
|
license = licenses.gpl2Plus;
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"i686-linux"
|
|
];
|
|
maintainers = with maintainers; [ abbradar ];
|
|
mainProgram = "thermald";
|
|
};
|
|
}
|