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

75 lines
1.4 KiB
Nix
Raw Normal View History

{ autoconf
, autoconf-archive
, automake
, dbus
, dbus-glib
, docbook_xml_dtd_412
, docbook-xsl-nons
, fetchFromGitHub
, gtk-doc
, libevdev
, libtool
, libxml2
2021-03-14 18:12:53 +00:00
, xz
, pkg-config
, lib, stdenv
, upower
}:
2014-08-14 00:17:55 +00:00
stdenv.mkDerivation rec {
pname = "thermald";
2021-03-09 23:13:17 +00:00
version = "2.4.3";
outputs = [ "out" "devdoc" ];
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}";
2021-03-09 23:13:17 +00:00
sha256 = "sha256-CPrk2r3C4WG+y3KzWf6xWhfNdDgEigki62iAXu+DccU=";
2014-08-14 00:17:55 +00:00
};
2015-06-12 00:30:47 +00:00
nativeBuildInputs = [
autoconf
autoconf-archive
automake
docbook-xsl-nons
docbook_xml_dtd_412
gtk-doc
libtool
pkg-config
];
2014-08-14 00:17:55 +00:00
buildInputs = [
dbus
dbus-glib
libevdev
libxml2
2021-03-14 18:12:53 +00:00
xz
upower
];
2014-08-14 00:17:55 +00:00
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/
'';
2014-08-14 00:17:55 +00:00
meta = with lib; {
2014-08-14 00:17:55 +00:00
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" ];
2015-06-12 00:30:47 +00:00
maintainers = with maintainers; [ abbradar ];
2014-08-14 00:17:55 +00:00
};
}