systemd: don't try to dlopen libintl.so.8 on musl
This commit is contained in:
@@ -319,7 +319,14 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
buildPackages.llvmPackages.libllvm
|
||||
];
|
||||
|
||||
autoPatchelfFlags = [ "--keep-libc" ];
|
||||
autoPatchelfFlags = [
|
||||
"--keep-libc"
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isMusl [
|
||||
# TODO: can be unconditionalized on staging.
|
||||
# Nixpkgs does not rely on gettext for libintl for musl.
|
||||
"--ignore-missing=libintl.so.8"
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libxcrypt
|
||||
|
||||
Reference in New Issue
Block a user