From 065a145ab5d4f0c2a7fd663acf134b4007f279bb Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Thu, 11 May 2023 20:40:45 +0800 Subject: [PATCH] ruby_3_0: pin to openssl_1_1 fixup https://github.com/NixOS/nixpkgs/pull/229890 --- pkgs/development/interpreters/ruby/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/ruby/default.nix b/pkgs/development/interpreters/ruby/default.nix index daa512500a41..f390e67182a3 100644 --- a/pkgs/development/interpreters/ruby/default.nix +++ b/pkgs/development/interpreters/ruby/default.nix @@ -84,8 +84,8 @@ let ++ (op fiddleSupport libffi) ++ (ops cursesSupport [ ncurses readline ]) ++ (op zlibSupport zlib) - ++ (op (!atLeast30 && opensslSupport) openssl_1_1) - ++ (op (atLeast30 && opensslSupport) openssl) + ++ (op (!atLeast31 && opensslSupport) openssl_1_1) + ++ (op (atLeast31 && opensslSupport) openssl) ++ (op gdbmSupport gdbm) ++ (op yamlSupport libyaml) # Looks like ruby fails to build on darwin without readline even if curses