aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/system/thermald/default.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-12-05 23:15:20 +0200
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-12-05 23:21:38 +0200
commita86d746b930e9c1a47f685ced7e3925145f54f84 (patch)
tree3b713a0beb3c8805dad578fd5a1a00eaccb810c8 /pkgs/tools/system/thermald/default.nix
parent6d4dbb8ca1f256bfcfdf2da83b96d5c0c50ae3dc (diff)
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.
Diffstat (limited to 'pkgs/tools/system/thermald/default.nix')
-rw-r--r--pkgs/tools/system/thermald/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/system/thermald/default.nix b/pkgs/tools/system/thermald/default.nix
index a3e90f32c0ab..67dd3588b007 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 ];
};
}