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

39 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoconf, automake, libtool
, pkgconfig, dbus, dbus-glib, libxml2 }:
2014-08-14 00:17:55 +00:00
stdenv.mkDerivation rec {
name = "thermald-${version}";
version = "1.8";
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}";
sha256 = "1g1l7k8yxj8bl1ysdx8v6anv1s7xk9j072y44gwki70dy48n7j92";
2014-08-14 00:17:55 +00:00
};
2015-06-12 00:30:47 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ autoconf automake libtool dbus 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 = ''
export PKG_CONFIG_PATH="${dbus.dev}/lib/pkgconfig:$PKG_CONFIG_PATH"
2017-01-29 17:07:47 +00:00
./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 = [ "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
};
}