Unverified Commit 8229ab24 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

rubyPackages.openssl: build against OpenSSL 3 if supported (#232906)

parent fef3d83a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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: {