mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
rubyPackages.openssl: build against OpenSSL 3 if supported (#232906)
This commit is contained in:
parent
fef3d83a2b
commit
8229ab2435
@ -516,7 +516,7 @@ in
|
||||
|
||||
openssl = attrs: {
|
||||
# https://github.com/ruby/openssl/issues/369
|
||||
buildInputs = [ openssl_1_1 ];
|
||||
buildInputs = [ (if (lib.versionAtLeast attrs.version "3.0.0") then openssl else openssl_1_1) ];
|
||||
};
|
||||
|
||||
opus-ruby = attrs: {
|
||||
|
Loading…
Reference in New Issue
Block a user