Files
nixpkgs/pkgs/by-name/th/thermald/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

82 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.10";
outputs = [
"out"
"devdoc"
];
src = fetchFromGitHub {
owner = "intel";
repo = "thermal_daemon";
rev = "v${version}";
sha256 = "sha256-+dk3lOlI8kaf8NvcWQSvTxSqVGPCgvVnTB9nltqQHrU=";
};
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 = [ ];
mainProgram = "thermald";
};
}