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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

76 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";
2022-10-01 02:42:23 +00:00
version = "2.5.1";
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}";
2022-10-01 02:42:23 +00:00
sha256 = "sha256-j3WurlNJ67iXBt+jn1iGGtGup8m6OYQtqJTYwUkJ4Ro=";
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"
"--disable-werror"
];
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://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" ];
2015-06-12 00:30:47 +00:00
maintainers = with maintainers; [ abbradar ];
2014-08-14 00:17:55 +00:00
};
}