Loading pkgs/servers/http/unit/default.nix +3 −0 Original line number Diff line number Diff line Loading @@ -8,6 +8,7 @@ , withPerldevel ? false, perldevel , withRuby_3_0 ? false, ruby_3_0 , withRuby_3_1 ? true, ruby_3_1 , withRuby_3_2 ? false, ruby_3_2 , withSSL ? true, openssl ? null , withIPv6 ? true , withDebug ? false Loading Loading @@ -50,6 +51,7 @@ in stdenv.mkDerivation rec { ++ optional withPerldevel perldevel ++ optional withRuby_3_0 ruby_3_0 ++ optional withRuby_3_1 ruby_3_1 ++ optional withRuby_3_2 ruby_3_2 ++ optional withSSL openssl; configureFlags = [ Loading @@ -73,6 +75,7 @@ in stdenv.mkDerivation rec { ${optionalString withPerldevel "./configure perl --module=perldev --perl=${perldevel}/bin/perl"} ${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"} ${optionalString withRuby_3_2 "./configure ruby --module=ruby32 --ruby=${ruby_3_2}/bin/ruby"} ''; passthru.tests.unit-php = nixosTests.unit-php; Loading Loading
pkgs/servers/http/unit/default.nix +3 −0 Original line number Diff line number Diff line Loading @@ -8,6 +8,7 @@ , withPerldevel ? false, perldevel , withRuby_3_0 ? false, ruby_3_0 , withRuby_3_1 ? true, ruby_3_1 , withRuby_3_2 ? false, ruby_3_2 , withSSL ? true, openssl ? null , withIPv6 ? true , withDebug ? false Loading Loading @@ -50,6 +51,7 @@ in stdenv.mkDerivation rec { ++ optional withPerldevel perldevel ++ optional withRuby_3_0 ruby_3_0 ++ optional withRuby_3_1 ruby_3_1 ++ optional withRuby_3_2 ruby_3_2 ++ optional withSSL openssl; configureFlags = [ Loading @@ -73,6 +75,7 @@ in stdenv.mkDerivation rec { ${optionalString withPerldevel "./configure perl --module=perldev --perl=${perldevel}/bin/perl"} ${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"} ${optionalString withRuby_3_2 "./configure ruby --module=ruby32 --ruby=${ruby_3_2}/bin/ruby"} ''; passthru.tests.unit-php = nixosTests.unit-php; Loading