summary refs log tree commit diff
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2022-11-21 20:37:18 +0200
committerGitHub <noreply@github.com>2022-11-21 20:37:18 +0200
commit1969d7d85cadbbb39b12260220c602fc61c48e0c (patch)
treee4b49e7d0ffc9c11348ffc8ec88f9737f5ab9ca2
parent671732feca9a8a11645f1bfca8a34c777e3a6c7f (diff)
parentedf1f46af87eb6d9a19da33efe693fe649630a9a (diff)
Merge pull request #202214 from exarkun/libxcrypt-bionic
libxcrypt: Fix the build on Aarch64/Android by allowing warnings
-rw-r--r--pkgs/development/libraries/libxcrypt/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libxcrypt/default.nix b/pkgs/development/libraries/libxcrypt/default.nix
index d4ce1f8bc7351..8fe6a7ee0a99b 100644
--- a/pkgs/development/libraries/libxcrypt/default.nix
+++ b/pkgs/development/libraries/libxcrypt/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
     "--enable-hashes=all"
     "--enable-obsolete-api=glibc"
     "--disable-failure-tokens"
-  ] ++ lib.optionals stdenv.hostPlatform.isMusl [
+  ] ++ lib.optionals (stdenv.hostPlatform.isMusl || stdenv.hostPlatform.libc == "bionic") [
     "--disable-werror"
   ];