diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-02-22 14:10:07 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2023-02-22 14:10:07 +0100 |
commit | c30907829c279146cc8167a9599b79e193346e94 (patch) | |
tree | 122c969f0f498b7091d686daedf7e052f4d62d53 /flake.nix | |
parent | 8ed29656fddb27763cef054f10d5f14274d174cc (diff) |
Fix the static build
It doesn't produce a "debug" output, so the build failed without an
error message in Hydra (https://hydra.nixos.org/build/210121811).
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -372,7 +372,7 @@ doInstallCheck = true; installCheckFlags = "sysconfdir=$(out)/etc"; - separateDebugInfo = true; + separateDebugInfo = !currentStdenv.hostPlatform.isStatic; strictDeps = true; |