75 lines
1.4 KiB
Nix
75 lines
1.4 KiB
Nix
{ autoconf
|
|
, autoconf-archive
|
|
, automake
|
|
, dbus
|
|
, dbus-glib
|
|
, docbook_xml_dtd_412
|
|
, docbook-xsl-nons
|
|
, fetchFromGitHub
|
|
, gtk-doc
|
|
, libevdev
|
|
, libtool
|
|
, libxml2
|
|
, lzma
|
|
, pkg-config
|
|
, lib, stdenv
|
|
, upower
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "thermald";
|
|
version = "2.4.3";
|
|
|
|
outputs = [ "out" "devdoc" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "intel";
|
|
repo = "thermal_daemon";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-CPrk2r3C4WG+y3KzWf6xWhfNdDgEigki62iAXu+DccU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
autoconf-archive
|
|
automake
|
|
docbook-xsl-nons
|
|
docbook_xml_dtd_412
|
|
gtk-doc
|
|
libtool
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus
|
|
dbus-glib
|
|
libevdev
|
|
libxml2
|
|
lzma
|
|
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://01.org/linux-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 ];
|
|
};
|
|
}
|