unbound: don't build twice w/musl, second time fails :(

+1 -1
+1 -1
pkgs/tools/networking/unbound/default.nix
··· 27 27 28 28 installFlags = [ "configfile=\${out}/etc/unbound/unbound.conf" ]; 29 29 30 - preFixup = stdenv.lib.optionalString stdenv.isLinux 30 + preFixup = stdenv.lib.optionalString (stdenv.isLinux && !stdenv.hostPlatform.isMusl) # XXX: revisit 31 31 # Build libunbound again, but only against nettle instead of openssl. 32 32 # This avoids gnutls.out -> unbound.lib -> openssl.out. 33 33 # There was some problem with this on Darwin; let's not complicate non-Linux.