From a86d746b930e9c1a47f685ced7e3925145f54f84 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 5 Dec 2017 23:15:20 +0200 Subject: [PATCH] thermald: Only works on x86 https://hydra.nixos.org/build/65220138 In general, the changelog at https://github.com/intel/thermal_daemon sounds like it's only targeted at Intel processors. --- pkgs/tools/system/thermald/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/system/thermald/default.nix b/pkgs/tools/system/thermald/default.nix index a3e90f32c0a..67dd3588b00 100644 --- a/pkgs/tools/system/thermald/default.nix +++ b/pkgs/tools/system/thermald/default.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { description = "Thermal Daemon"; homepage = https://01.org/linux-thermal-daemon; license = licenses.gpl2; - platforms = platforms.linux; + platforms = [ "x86_64-linux" "i686-linux" ]; maintainers = with maintainers; [ abbradar ]; }; }