thermald: update and adopt

Changed files
+13 -11
pkgs
tools
system
thermald
+13 -11
pkgs/tools/system/thermald/default.nix
···
-
{ stdenv, fetchurl, unzip, autoconf, automake, libtool, pkgconfig, dbus_libs, dbus_glib, libxml2 }:
stdenv.mkDerivation rec {
-
version = "1.3";
name = "thermald-${version}";
-
src = fetchurl {
-
url = "https://github.com/01org/thermal_daemon/archive/v${version}.zip";
-
sha256 = "0jqxc8vvd4lx4z0kcdisk8lpdf823nysvjcfjxlr5wzla1xysqwc";
};
-
buildInputs = [ unzip autoconf automake libtool pkgconfig dbus_libs dbus_glib libxml2 ];
patchPhase = ''sed -e 's/upstartconfdir = \/etc\/init/upstartconfdir = $(out)\/etc\/init/' -i data/Makefile.am'';
···
preInstall = "sysconfdir=$out/etc";
-
meta = {
description = "Thermal Daemon";
-
longDescription = ''
-
Thermal Daemon
-
'';
homepage = https://01.org/linux-thermal-daemon;
-
license = stdenv.lib.licenses.gpl2;
};
}
···
+
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, dbus_libs, dbus_glib, libxml2 }:
stdenv.mkDerivation rec {
+
version = "1.4.2";
name = "thermald-${version}";
+
src = fetchFromGitHub {
+
owner = "01org";
+
repo = "thermal_daemon";
+
rev = "v${version}";
+
sha256 = "051119wb0n31rn15pnx56d1r58a2d1fmj030q991mcv7pcy6c8mg";
};
+
+
buildInputs = [ autoconf automake libtool pkgconfig dbus_libs dbus_glib libxml2 ];
patchPhase = ''sed -e 's/upstartconfdir = \/etc\/init/upstartconfdir = $(out)\/etc\/init/' -i data/Makefile.am'';
···
preInstall = "sysconfdir=$out/etc";
+
meta = with stdenv.lib; {
description = "Thermal Daemon";
homepage = https://01.org/linux-thermal-daemon;
+
license = licenses.gpl2;
+
platforms = platforms.linux;
+
maintainers = with maintainers; [ abbradar ];
};
}