76999cc40e
This makes the command ‘nix-env -qa -f. --arg config '{skipAliases = true;}'’ work in Nixpkgs. Misc... - qtikz: use libsForQt5.callPackage This ensures we get the right poppler. - rewrites: docbook5_xsl -> docbook_xsl_ns docbook_xml_xslt -> docbook_xsl diffpdf: fixup
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, autoconf, automake, libtool
|
|
, pkgconfig, dbus, dbus-glib, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "thermald-${version}";
|
|
version = "1.7.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "01org";
|
|
repo = "thermal_daemon";
|
|
rev = "v${version}";
|
|
sha256 = "1cs2pq8xvfnsvrhg2bxawk4kn3z1qmfrnpnhs178pvfbglzh15hc";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ autoconf automake libtool dbus dbus-glib libxml2 ];
|
|
|
|
patchPhase = ''sed -e 's/upstartconfdir = \/etc\/init/upstartconfdir = $(out)\/etc\/init/' -i data/Makefile.am'';
|
|
|
|
preConfigure = ''
|
|
export PKG_CONFIG_PATH="${dbus.dev}/lib/pkgconfig:$PKG_CONFIG_PATH"
|
|
./autogen.sh
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=$(out)/etc" "--localstatedir=/var"
|
|
"--with-dbus-sys-dir=$(out)/etc/dbus-1/system.d"
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Thermal Daemon";
|
|
homepage = https://01.org/linux-thermal-daemon;
|
|
license = licenses.gpl2;
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|