diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-06-29 23:08:02 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-06-29 23:08:17 +0300 |
commit | 86ee76254bbb3c148907c142dc08c006778349bb (patch) | |
tree | 041f39f6f3baa0b2ac6735f3a7f75fc32011dfad /gnu | |
parent | ef2c7fb5da058030677da4abe9fec177357ee25d (diff) | |
download | guix-86ee76254bbb3c148907c142dc08c006778349bb.tar guix-86ee76254bbb3c148907c142dc08c006778349bb.tar.gz |
gnu: thermald: Only build on i686 and x86_64.
* gnu/packages/admin.scm (thermald)[supported-systems]: New field.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/admin.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 2cc5200a06..5bb98865bf 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2263,4 +2263,6 @@ make it a perfect utility on modern distros.") (synopsis "CPU scaling for thermal management") (description "The Linux Thermal Daemon helps monitor and control temperature on systems running the Linux kernel.") + ;; arm and aarch64 don't have cpuid.h + (supported-systems '("i686-linux" "x86_64-linux")) (license license:gpl2+))) |