unit: add ruby 3.1

This commit is contained in:
Izorkin 2022-06-03 09:48:26 +03:00
parent 7f297f05a6
commit 026d490c74
No known key found for this signature in database
GPG key ID: 1436C1B3F3679F09

View file

@ -8,6 +8,7 @@
, withPerldevel ? false, perldevel
, withRuby_2_7 ? true, ruby_2_7
, withRuby_3_0 ? false, ruby_3_0
, withRuby_3_1 ? false, ruby_3_1
, withSSL ? true, openssl ? null
, withIPv6 ? true
, withDebug ? false
@ -50,6 +51,7 @@ in stdenv.mkDerivation rec {
++ optional withPerldevel perldevel
++ optional withRuby_2_7 ruby_2_7
++ optional withRuby_3_0 ruby_3_0
++ optional withRuby_3_1 ruby_3_1
++ optional withSSL openssl;
configureFlags = [
@ -74,6 +76,7 @@ in stdenv.mkDerivation rec {
${optionalString withPerldevel "./configure perl --module=perldev --perl=${perldevel}/bin/perl"}
${optionalString withRuby_2_7 "./configure ruby --module=ruby27 --ruby=${ruby_2_7}/bin/ruby"}
${optionalString withRuby_3_0 "./configure ruby --module=ruby30 --ruby=${ruby_3_0}/bin/ruby"}
${optionalString withRuby_3_1 "./configure ruby --module=ruby31 --ruby=${ruby_3_1}/bin/ruby"}
'';
postInstall = ''