summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2018-03-25 17:45:22 -0400
committerShea Levy <shea@shealevy.com>2018-03-27 08:15:07 -0400
commitcdf9a78a3ebb535fa6ba88fce88c655776d2474f (patch)
tree494af986a0c2adc37a3c6d1173a0dc563ae96174 /pkgs/top-level
parentb0482248fefbf3b6cdd9c92053cfb49778a3a3a8 (diff)
downloadnixlib-cdf9a78a3ebb535fa6ba88fce88c655776d2474f.tar
nixlib-cdf9a78a3ebb535fa6ba88fce88c655776d2474f.tar.gz
nixlib-cdf9a78a3ebb535fa6ba88fce88c655776d2474f.tar.bz2
nixlib-cdf9a78a3ebb535fa6ba88fce88c655776d2474f.tar.lz
nixlib-cdf9a78a3ebb535fa6ba88fce88c655776d2474f.tar.xz
nixlib-cdf9a78a3ebb535fa6ba88fce88c655776d2474f.tar.zst
nixlib-cdf9a78a3ebb535fa6ba88fce88c655776d2474f.zip
kexectools: Disable only on RISC-V if Linux.
The isKexecable flag treated Linux without kexec as just a normal
variant, when it really should be treated as a special case incurring
complexity debt to support.
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 831fc8344cb9..8d2a17a79daa 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -3131,9 +3131,7 @@ with pkgs;
 
   keepalived = callPackage ../tools/networking/keepalived { };
 
-  kexectools = if hostPlatform.isKexecable
-                 then callPackage ../os-specific/linux/kexectools { }
-               else null;
+  kexectools = callPackage ../os-specific/linux/kexectools { };
 
   keybase = callPackage ../tools/security/keybase { };