aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/system/thermald/default.nix
diff options
context:
space:
mode:
authorEdmund Wu <fangkazuto@gmail.com>2020-04-25 10:28:21 -0400
committerEdmund Wu <fangkazuto@gmail.com>2020-04-25 13:28:48 -0400
commit3e051b04cb6e4008d22c1998eb4cd5eddbcd87b4 (patch)
treeabccc58169afcde62503085cd05b72fbb37a259d /pkgs/tools/system/thermald/default.nix
parent21a354b6dd31ce9b1250674218f0a9f49677f2ac (diff)
thermald: 1.9.1 -> 2.1
Diffstat (limited to 'pkgs/tools/system/thermald/default.nix')
-rw-r--r--pkgs/tools/system/thermald/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/system/thermald/default.nix b/pkgs/tools/system/thermald/default.nix
index 560985a94f33..51a443b9bde7 100644
--- a/pkgs/tools/system/thermald/default.nix
+++ b/pkgs/tools/system/thermald/default.nix
@@ -1,19 +1,19 @@
{ stdenv, fetchFromGitHub, autoconf, automake, libtool
-, pkgconfig, dbus, dbus-glib, libxml2 }:
+, pkgconfig, dbus, dbus-glib, libxml2, autoconf-archive }:
stdenv.mkDerivation rec {
pname = "thermald";
- version = "1.9.1";
+ version = "2.1";
src = fetchFromGitHub {
- owner = "01org";
+ owner = "intel";
repo = "thermal_daemon";
rev = "v${version}";
- sha256 = "0iagc3jqpnh6q2fa1gx4wx6r8qg0556j60xr159zqg95djr4dv99";
+ sha256 = "1k8svy03k57ld6p5d29i0ccrd1gics6kbyx1bkfmw9fh1bbljyf7";
};
nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ autoconf automake libtool dbus dbus-glib libxml2 ];
+ buildInputs = [ autoconf automake libtool dbus dbus-glib libxml2 autoconf-archive ];
patchPhase = ''sed -e 's/upstartconfdir = \/etc\/init/upstartconfdir = $(out)\/etc\/init/' -i data/Makefile.am'';