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 b4a2506 commit f0b04dcCopy full SHA for f0b04dc
test/exe-dlls/default.nix
@@ -8,7 +8,10 @@ let
8
inherit compiler-nix-name evalPackages;
9
src = testSrc "exe-dlls";
10
cabalProjectLocal = builtins.readFile ../cabal.project.local;
11
- modules = import ../modules.nix;
+ modules = import ../modules.nix ++ optional stdenv.hostPlatform.isAndroid {
12
+ packages.libsodium.configureFlags = [ "--c2hs-option=--cppopts=-D_Null_unspecified=" ];
13
+ packages.libsodium.components.library.hardeningDisable = ["fortify"];
14
+ };
15
};
16
17
packages = project.hsPkgs;
0 commit comments