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

37 lines
1.1 KiB
Nix
Raw Normal View History

2015-06-12 00:30:47 +00:00
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, dbus_libs, dbus_glib, libxml2 }:
2014-08-14 00:17:55 +00:00
stdenv.mkDerivation rec {
name = "thermald-${version}";
2017-06-20 01:19:34 +00:00
version = "1.6";
2016-04-30 00:05:14 +00:00
2015-06-12 00:30:47 +00:00
src = fetchFromGitHub {
owner = "01org";
repo = "thermal_daemon";
rev = "v${version}";
2017-06-20 01:19:34 +00:00
sha256 = "1qzvmzkzdrmwrzfbxb2rz1i39j5zskjxiiv1w9m0xyg08p2wr7h3";
2014-08-14 00:17:55 +00:00
};
2015-06-12 00:30:47 +00:00
buildInputs = [ autoconf automake libtool pkgconfig dbus_libs dbus_glib libxml2 ];
2014-08-14 00:17:55 +00:00
patchPhase = ''sed -e 's/upstartconfdir = \/etc\/init/upstartconfdir = $(out)\/etc\/init/' -i data/Makefile.am'';
preConfigure = ''
2017-01-29 17:07:47 +00:00
export PKG_CONFIG_PATH="${dbus_libs.dev}/lib/pkgconfig:$PKG_CONFIG_PATH"
./autogen.sh
'';
2014-08-14 00:17:55 +00:00
configureFlags = [
"--sysconfdir=$(out)/etc" "--localstatedir=/var"
"--with-dbus-sys-dir=$(out)/etc/dbus-1/system.d"
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
];
2015-06-12 00:30:47 +00:00
meta = with stdenv.lib; {
2014-08-14 00:17:55 +00:00
description = "Thermal Daemon";
homepage = https://01.org/linux-thermal-daemon;
2015-06-12 00:30:47 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
2014-08-14 00:17:55 +00:00
};
}