0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

Merge pull request #241531 from Artturin/fix/libxcrypt-marchnative

This commit is contained in:
Artturi 2023-07-04 22:33:01 +03:00 committed by GitHub
commit 76349bb08b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,7 @@ stdenv.mkDerivation (finalAttrs: {
"--enable-hashes=${enableHashes}"
"--enable-obsolete-api=glibc"
"--disable-failure-tokens"
] ++ lib.optionals (stdenv.hostPlatform.isMusl || stdenv.hostPlatform.libc == "bionic") [
# required for musl, android, march=native
"--disable-werror"
];