Open al3xtjames opened 2 months ago
On non pkgsStatic
cross ldns works through this https://github.com/openssh/openssh-portable/blob/1bc426f51b0a5cfdcfbd205218f0b6839ffe91e9/configure.ac#L1681
Tried using the explicit path but it did not work
diff --git a/pkgs/tools/networking/openssh/common.nix b/pkgs/tools/networking/openssh/common.nix
index 496ea270c81e..deddfb469532 100644
--- a/pkgs/tools/networking/openssh/common.nix
+++ b/pkgs/tools/networking/openssh/common.nix
@@ -21,6 +21,7 @@
, pkg-config
, pam
, libredirect
+, buildPackages
, etcDir ? null
, withKerberos ? false
, withLdns ? true
@@ -100,7 +101,7 @@ stdenv.mkDerivation (finalAttrs: {
++ lib.optional withKerberos (assert krb5 != null; "--with-kerberos5=${lib.getDev krb5}")
++ lib.optional stdenv.isDarwin "--disable-libutil"
++ lib.optional (!linkOpenssl) "--without-openssl"
- ++ lib.optional withLdns "--with-ldns"
+ ++ lib.optionals withLdns [ "--with-ldns" "ac_cv_path_ac_pt_LDNSCONFIG=${lib.getDev ldns}/bin/ldns-config" ]
++ extraConfigureFlags;
${if stdenv.hostPlatform.isStatic then "NIX_LDFLAGS" else null}= [ "-laudit" ] ++ lib.optionals withKerberos [ "-lkeyutils" ];
configure:15758: checking for ldns support
configure:15773: x86_64-unknown-linux-musl-gcc -o conftest -g -O2 -pipe -Wno-error=format-truncation -Wall -Wextra -Wpointer-arith -Wuninitialized -Wsign-compare -Wformat-security -Wsizeof-pointer-memaccess -Wno-pointer-sign -Wno-unused-parameter -Wno-unused-result -Wimplicit-fallthrough -Wmisleading-indentation -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -ftrapv -fzero-call-used-regs=used -ftrivial-auto-var-init=zero -fno-builtin-memset -fstack-protector-strong -D_XOPEN_SOURCE=600 -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_GNU_SOURCE -I/nix/store/kizwxysgg23v8nq9jbv0cwk74hymn9b1-ldns-static-x86_64-unknown-linux-musl-1.8.3-dev/include -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -fstack-protector-strong conftest.c -L/nix/store/7h0s0p3fgag6m9px05rc85nyfbqf2v2i-openssl-static-x86_64-unknown-linux-musl-3.0.14-dev/lib -L/nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib -lssl -lcrypto -lldns >&5
conftest.c: In function 'main':
conftest.c:120:30: warning: variable 'status' set but not used [-Wunused-but-set-variable]
120 | int main(void) { ldns_status status = ldns_verify_trusted(NULL, NULL, NULL, NULL); status=LDNS_STATUS_OK; exit(0); }
| ^~~~~~
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(host2str.o): in function `ldns_print_bignum_b64_line':
(.text+0x380d): undefined reference to `BN_bn2bin'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(host2str.o): in function `ldns_key2buffer_str':
(.text+0x5a9b): undefined reference to `RSA_get0_key'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5aad): undefined reference to `RSA_get0_factors'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5ac4): undefined reference to `RSA_get0_crt_params'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5bac): undefined reference to `RSA_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5cd4): undefined reference to `i2d_PrivateKey'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5d24): undefined reference to `CRYPTO_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5da0): undefined reference to `EVP_PKEY_get1_EC_KEY'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5dab): undefined reference to `EC_KEY_get0_private_key'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5dcd): undefined reference to `EC_KEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5e62): undefined reference to `i2d_PrivateKey'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5f2e): undefined reference to `DSA_get0_pqg'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5f40): undefined reference to `DSA_get0_key'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x6019): undefined reference to `CRYPTO_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x603a): undefined reference to `CRYPTO_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_new_frm_fp_ecdsa_l':
(.text+0x9c): undefined reference to `EC_KEY_new_by_curve_name'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xbe): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xdf): undefined reference to `EC_KEY_set_private_key'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xe7): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xef): undefined reference to `EC_KEY_get0_group'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xfa): undefined reference to `EC_POINT_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x10e): undefined reference to `EC_GROUP_get0_generator'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x119): undefined reference to `EC_POINT_copy'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x129): undefined reference to `EC_KEY_get0_private_key'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x13f): undefined reference to `EC_POINT_mul'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x152): undefined reference to `EC_KEY_set_public_key'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x162): undefined reference to `EC_POINT_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x167): undefined reference to `EVP_PKEY_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x17f): undefined reference to `EVP_PKEY_assign'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x18b): undefined reference to `EVP_PKEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x194): undefined reference to `EC_KEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1ee): undefined reference to `EC_KEY_new_by_curve_name'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x204): undefined reference to `EC_POINT_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x20c): undefined reference to `EC_KEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x219): undefined reference to `EC_POINT_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_new_frm_fp_ed25519_l':
(.text+0x325): undefined reference to `d2i_PrivateKey'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_new_frm_fp_ed448_l':
(.text+0x485): undefined reference to `d2i_PrivateKey'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_dsa2bin.constprop.0':
(.text+0x52b): undefined reference to `DSA_get0_pqg'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x53d): undefined reference to `DSA_get0_key'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x546): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x598): undefined reference to `BN_bn2bin'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5a5): undefined reference to `BN_bn2bin'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5b4): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5df): undefined reference to `BN_bn2bin'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5f1): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x619): undefined reference to `BN_bn2bin'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_new_frm_fp_rsa_l':
(.text+0x6bf): undefined reference to `RSA_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x757): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x7d2): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x84c): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x8c6): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x947): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o):(.text+0x9ca): more undefined references to `BN_bin2bn' follow
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_new_frm_fp_rsa_l':
(.text+0xaee): undefined reference to `RSA_set0_key'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xb06): undefined reference to `RSA_set0_factors'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xb1f): undefined reference to `RSA_set0_crt_params'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xb82): undefined reference to `RSA_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xb9b): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xba5): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xbaf): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xbb7): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xbc1): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o):(.text+0xbcb): more undefined references to `BN_free' follow
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_new_frm_fp_dsa_l':
(.text+0xd5f): undefined reference to `DSA_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xdfc): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xe78): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xef6): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xf72): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xff3): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1010): undefined reference to `DSA_set0_pqg'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1022): undefined reference to `DSA_set0_key'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1072): undefined reference to `DSA_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x107a): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1084): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x108e): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1096): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x109e): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_set_rsa_key':
(.text+0x12eb): undefined reference to `EVP_PKEY_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x12f9): undefined reference to `EVP_PKEY_set1_RSA'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_set_dsa_key':
(.text+0x131b): undefined reference to `EVP_PKEY_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1329): undefined reference to `EVP_PKEY_set1_DSA'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_assign_rsa_key':
(.text+0x134b): undefined reference to `EVP_PKEY_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x135e): undefined reference to `EVP_PKEY_assign'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_assign_dsa_key':
(.text+0x138b): undefined reference to `EVP_PKEY_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x139e): undefined reference to `EVP_PKEY_assign'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key2rr':
(.text+0x18a6): undefined reference to `EVP_PKEY_get1_EC_KEY'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x18b6): undefined reference to `EC_KEY_set_conv_form'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x18c0): undefined reference to `i2o_ECPublicKey'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x18d4): undefined reference to `i2o_ECPublicKey'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x190e): undefined reference to `EC_KEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x19e5): undefined reference to `RSA_get0_key'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x19ef): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1a07): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1a23): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1a47): undefined reference to `BN_bn2bin'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1a51): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1a73): undefined reference to `BN_bn2bin'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1a7d): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1a97): undefined reference to `RSA_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1b42): undefined reference to `DSA_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1bae): undefined reference to `i2d_PUBKEY'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1c3e): undefined reference to `i2d_PUBKEY'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1d61): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1d7e): undefined reference to `BN_bn2bin'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1d92): undefined reference to `BN_bn2bin'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1dac): undefined reference to `EC_KEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_new_frm_engine':
(.text+0x1e21): undefined reference to `UI_OpenSSL'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x1e31): undefined reference to `ENGINE_load_private_key'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_new_frm_algorithm':
(.text+0x24b3): undefined reference to `EVP_PKEY_CTX_new_id'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x24c3): undefined reference to `EVP_PKEY_keygen_init'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x24d7): undefined reference to `EVP_PKEY_keygen'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x24e7): undefined reference to `EVP_PKEY_CTX_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2566): undefined reference to `RAND_bytes'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x259f): undefined reference to `EC_KEY_new_by_curve_name'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x25b3): undefined reference to `EC_KEY_generate_key'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x25bc): undefined reference to `EVP_PKEY_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x25d5): undefined reference to `EVP_PKEY_assign'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x25ef): undefined reference to `EC_KEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2601): undefined reference to `DSA_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2629): undefined reference to `DSA_generate_parameters_ex'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x263b): undefined reference to `DSA_generate_key'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2657): undefined reference to `DSA_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2668): undefined reference to `EVP_PKEY_CTX_new_id'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2688): undefined reference to `EVP_PKEY_CTX_new_id'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x269c): undefined reference to `EVP_PKEY_keygen_init'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x26ac): undefined reference to `EVP_PKEY_CTX_set_rsa_keygen_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x26bc): undefined reference to `EVP_PKEY_keygen'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x26c8): undefined reference to `EVP_PKEY_CTX_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x26e6): undefined reference to `EVP_PKEY_CTX_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x26f6): undefined reference to `EC_KEY_new_by_curve_name'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2716): undefined reference to `EVP_PKEY_CTX_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2741): undefined reference to `DSA_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_deep_free':
(.text+0x2797): undefined reference to `EVP_PKEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_rsa_key':
(.text+0x155a): undefined reference to `EVP_PKEY_get1_RSA'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(keys.o): in function `ldns_key_dsa_key':
(.text+0x157a): undefined reference to `EVP_PKEY_get1_DSA'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(tsig.o): in function `ldns_tsig_mac_new':
(.text+0x259): undefined reference to `EVP_md5'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x28b): undefined reference to `HMAC'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x481): undefined reference to `EVP_sha512'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x491): undefined reference to `EVP_sha384'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x4a1): undefined reference to `EVP_sha256'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x4b1): undefined reference to `EVP_sha1'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(tsig.o): in function `ldns_pkt_tsig_verify_next':
(.text+0x8b5): undefined reference to `CRYPTO_memcmp'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(util.o): in function `ldns_init_random':
(.text+0xa61): undefined reference to `RAND_seed'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xaed): undefined reference to `RAND_seed'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(util.o): in function `ldns_get_random':
(.text+0xbb6): undefined reference to `RAND_bytes'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec.o): in function `ldns_key_buf2dsa_raw':
(.text+0x5be): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5cf): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5e9): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x603): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x61f): undefined reference to `DSA_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x638): undefined reference to `DSA_set0_pqg'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x649): undefined reference to `DSA_set0_key'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x655): undefined reference to `DSA_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x65d): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x68c): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x694): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x69c): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x6a4): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec.o):(.text+0x6b4): more undefined references to `BN_free' follow
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec.o): in function `ldns_key_buf2dsa_raw':
(.text+0x6cc): undefined reference to `DSA_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x6d4): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec.o): in function `ldns_key_buf2rsa_raw':
(.text+0x747): undefined reference to `BN_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x765): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x76a): undefined reference to `BN_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x78e): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x793): undefined reference to `RSA_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x7af): undefined reference to `RSA_set0_key'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x846): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x854): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x85c): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x866): undefined reference to `RSA_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x876): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x87e): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec.o): in function `ldns_digest_evp':
(.text+0x8b4): undefined reference to `EVP_MD_CTX_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x8c9): undefined reference to `EVP_DigestInit_ex'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x8da): undefined reference to `EVP_DigestUpdate'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x8eb): undefined reference to `EVP_DigestFinal_ex'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x8fc): undefined reference to `EVP_MD_CTX_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x91c): undefined reference to `EVP_MD_CTX_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec.o): in function `ldns_key_rr2ds':
(.text+0xbcc): undefined reference to `SHA384'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec.o): in function `ldns_convert_dsa_rrsig_asn12rdf':
(.text+0x2dda): undefined reference to `d2i_DSA_SIG'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2e11): undefined reference to `DSA_SIG_get0'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2e1a): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2e5e): undefined reference to `BN_bn2bin'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2e68): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2ea5): undefined reference to `BN_bn2bin'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2ec9): undefined reference to `DSA_SIG_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2ef6): undefined reference to `DSA_SIG_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2f2d): undefined reference to `DSA_SIG_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2f3e): undefined reference to `DSA_SIG_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec.o): in function `ldns_convert_dsa_rrsig_rdf2asn1':
(.text+0x2f8b): undefined reference to `BN_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2fb0): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2fb5): undefined reference to `BN_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2fda): undefined reference to `BN_bin2bn'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2fdf): undefined reference to `DSA_SIG_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2ff9): undefined reference to `DSA_SIG_set0'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x300c): undefined reference to `i2d_DSA_SIG'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x302e): undefined reference to `DSA_SIG_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x30dc): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x3104): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x310c): undefined reference to `BN_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x311c): undefined reference to `DSA_SIG_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec.o): in function `ldns_convert_ecdsa_rrsig_asn1len2rdf':
(.text+0x31f2): undefined reference to `d2i_ECDSA_SIG'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x320e): undefined reference to `ECDSA_SIG_get0'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x3217): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x3235): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x3277): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x3298): undefined reference to `BN_bn2bin'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x32a7): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x32cb): undefined reference to `BN_bn2bin'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x32e8): undefined reference to `ECDSA_SIG_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x3314): undefined reference to `ECDSA_SIG_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_sign.o): in function `ldns_pkey_is_ecdsa':
(.text+0xaa): undefined reference to `EVP_PKEY_get_base_id'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xc4): undefined reference to `EVP_PKEY_get1_EC_KEY'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xcf): undefined reference to `EC_KEY_get0_group'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xdf): undefined reference to `EC_GROUP_get_curve_name'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xee): undefined reference to `EC_GROUP_get_curve_name'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xfd): undefined reference to `EC_KEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x10c): undefined reference to `EC_KEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x124): undefined reference to `EC_KEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_sign.o): in function `ldns_sign_public_dsa':
(.text+0x4c0): undefined reference to `SHA1'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x4d9): undefined reference to `DSA_do_sign'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x510): undefined reference to `DSA_SIG_get0'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x51a): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x55c): undefined reference to `BN_bn2bin'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x566): undefined reference to `BN_num_bits'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5af): undefined reference to `BN_bn2bin'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x5dc): undefined reference to `DSA_SIG_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x627): undefined reference to `DSA_SIG_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_sign.o): in function `ldns_sign_public_evp':
(.text+0x677): undefined reference to `EVP_PKEY_get_id'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x687): undefined reference to `EVP_MD_CTX_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x6a4): undefined reference to `EVP_DigestSignInit'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x6cf): undefined reference to `EVP_DigestSign'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x6e9): undefined reference to `EVP_PKEY_get_base_id'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x6fa): undefined reference to `EVP_PKEY_get_base_id'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x72a): undefined reference to `EVP_MD_CTX_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x764): undefined reference to `EVP_PKEY_get_id'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x77d): undefined reference to `EVP_MD_CTX_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x794): undefined reference to `EVP_DigestInit'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x7a9): undefined reference to `EVP_MD_CTX_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x7c4): undefined reference to `EVP_DigestUpdate'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x7dd): undefined reference to `EVP_SignFinal'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x803): undefined reference to `EVP_PKEY_get_base_id'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_sign.o): in function `ldns_sign_public_buffer':
(.text+0x8a1): undefined reference to `EVP_sha1'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x8e9): undefined reference to `EVP_sha256'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x921): undefined reference to `EVP_sha384'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x931): undefined reference to `EVP_md5'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x941): undefined reference to `EVP_sha512'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_sign.o): in function `ldns_sign_public_rsasha1':
(.text+0xb87): undefined reference to `SHA1'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xbaa): undefined reference to `RSA_sign'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_sign.o): in function `ldns_sign_public_rsamd5':
(.text+0xc5f): undefined reference to `MD5'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0xc82): undefined reference to `RSA_sign'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_verify.o): in function `ldns_dnssec_trust_tree_print_sm_fmt.isra.0':
(.text+0x1959): undefined reference to `ERR_print_errors_fp'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_verify.o): in function `ldns_ed255192pkey_raw':
(.text+0x2503): undefined reference to `d2i_PUBKEY'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_verify.o): in function `ldns_ed4482pkey_raw':
(.text+0x25a3): undefined reference to `d2i_PUBKEY'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_verify.o): in function `ldns_ecdsa2pkey_raw':
(.text+0x261c): undefined reference to `EC_KEY_new_by_curve_name'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x263c): undefined reference to `EC_KEY_new_by_curve_name'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x266e): undefined reference to `o2i_ECPublicKey'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2678): undefined reference to `EVP_PKEY_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2692): undefined reference to `EVP_PKEY_assign'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x26c8): undefined reference to `EC_KEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x26d6): undefined reference to `EVP_PKEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x26e0): undefined reference to `EC_KEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_verify.o): in function `ldns_verify_rrsig_evp_raw':
(.text+0x270e): undefined reference to `EVP_MD_CTX_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x272a): undefined reference to `EVP_DigestInit'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x273a): undefined reference to `EVP_DigestUpdate'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x274a): undefined reference to `EVP_VerifyFinal'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2755): undefined reference to `EVP_MD_CTX_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x279d): undefined reference to `EVP_DigestVerifyInit'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x27ad): undefined reference to `EVP_MD_CTX_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x27f2): undefined reference to `EVP_DigestVerify'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_verify.o): in function `ldns_verify_rrsig_dsa_raw':
(.text+0x283e): undefined reference to `EVP_PKEY_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2862): undefined reference to `EVP_PKEY_assign'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x286b): undefined reference to `EVP_sha1'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x288a): undefined reference to `EVP_PKEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_verify.o): in function `ldns_verify_rrsig_rsasha1_raw':
(.text+0x28ee): undefined reference to `EVP_PKEY_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2912): undefined reference to `EVP_PKEY_assign'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x291b): undefined reference to `EVP_sha1'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x293a): undefined reference to `EVP_PKEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_verify.o): in function `ldns_verify_rrsig_rsasha256_raw':
(.text+0x299e): undefined reference to `EVP_PKEY_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x29c2): undefined reference to `EVP_PKEY_assign'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x29cb): undefined reference to `EVP_sha256'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x29ea): undefined reference to `EVP_PKEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_verify.o): in function `ldns_verify_rrsig_rsasha512_raw':
(.text+0x2a2e): undefined reference to `EVP_PKEY_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2a52): undefined reference to `EVP_PKEY_assign'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2a5b): undefined reference to `EVP_sha512'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2a7a): undefined reference to `EVP_PKEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_verify.o): in function `ldns_verify_rrsig_rsamd5_raw':
(.text+0x2abe): undefined reference to `EVP_PKEY_new'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2ae2): undefined reference to `EVP_PKEY_assign'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2aeb): undefined reference to `EVP_md5'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2b0a): undefined reference to `EVP_PKEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: /nix/store/yrjvv0xw086vrzmzd4zdrvql83wc4r55-ldns-static-x86_64-unknown-linux-musl-1.8.3/lib/libldns.a(dnssec_verify.o): in function `ldns_verify_rrsig_buffers_raw':
(.text+0x2be8): undefined reference to `EVP_sha384'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2c06): undefined reference to `EVP_PKEY_free'
/nix/store/i39zgvfjir9ic0rzcgq0b92kphx107r2-x86_64-unknown-linux-musl-binutils-2.42/bin/x86_64-unknown-linux-musl-ld: (.text+0x2cb9): undefined reference to `EVP_sha256'
collect2: error: ld returned 1 exit status
Steps To Reproduce
Steps to reproduce the behavior:
nix build 'nixpkgs#pkgsStatic.openssh'
Build log
https://gist.github.com/al3xtjames/bd9e59dbd25078015069fe0c783ddd60#file-openssh-static-x86_64-unknown-linux-musl-9-8p1-drv-log-L285-L288
Additional context
Add any other context about the problem here.
Notify maintainers
Metadata
Please run
nix-shell -p nix-info --run "nix-info -m"
and paste the result.Add a :+1: reaction to issues you find important.