about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorTristan Ross <tristan.ross@midstall.com>2024-06-07 00:02:22 -0700
committerTristan Ross <tristan.ross@midstall.com>2024-06-14 17:45:12 -0700
commitb51cf6ec0e0bc9a192a6595d69e6817fec93c56c (patch)
tree70c3b2acb139c6ebbe1a296fa863c6aa4da15e50 /pkgs/top-level
parentf720f2256e03f4e2385ef7e124df19e643f5300c (diff)
kexec-tools: fix compiling with llvm
Fixes #317526
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix12
1 files changed, 1 insertions, 11 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index c0ffbf8bf6e27..1dae626a8a356 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -9474,17 +9474,7 @@ with pkgs;
 
   kestrel = callPackage ../tools/security/kestrel { };
 
-  kexec-tools = callPackage ../os-specific/linux/kexec-tools {
-    # clangStdenv fails with
-    # purgatory/arch/i386/entry32-16.S:23:2: error: unknown directive
-    #  .arch i386
-    #  ^
-    # purgatory/arch/i386/entry32-16.S:115:11: error: unknown token in expression
-    #  ljmp %cs:*(realdest - entry16)
-    #           ^
-    # make: *** [Makefile:128: purgatory/arch/i386/entry32-16.o] Error 1
-    stdenv = gccStdenv;
-  };
+  kexec-tools = callPackage ../os-specific/linux/kexec-tools { };
 
   keepkey-agent = with python3Packages; toPythonApplication keepkey-agent;