We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebc1f8a commit b8b7ceeCopy full SHA for b8b7cee
lib/check.nix
@@ -3,7 +3,7 @@ let self = drvOrig:
3
4
let
5
# Work around problem running dynamicially linked Android executables with qemu.
6
- drv = drvOrig.override (oldAttrs: lib.optionalAttrs stdenv.hostPlatform.isAndroid { setupBuildFlags = oldAttrs.setupBuildFlags or [] ++ ["--ghc-option=-optl-static" ]; });
+ drv = drvOrig.override (oldAttrs: lib.optionalAttrs stdenv.hostPlatform.isAndroid { setupBuildFlags = (oldAttrs.setupBuildFlags or []) ++ ["--ghc-option=-optl-static"]; });
7
8
component = drv.config;
9
0 commit comments