about summary refs log tree commit diff
path: root/pkgs/servers/http/unit
diff options
context:
space:
mode:
authorNick Novitski <github@nicknovitski.com>2021-02-01 15:01:46 -0800
committerNick Novitski <github@nicknovitski.com>2021-02-02 10:50:03 -0800
commitc14b54d67b3bf7ecbf716c7b3c83bdc1bea87aa0 (patch)
treec8fbcbefd4cd6f92edd5983e74b413c527e4d941 /pkgs/servers/http/unit
parenta4901759b13c3281e645949b276b78218aabf0c9 (diff)
downloadnixlib-c14b54d67b3bf7ecbf716c7b3c83bdc1bea87aa0.tar
nixlib-c14b54d67b3bf7ecbf716c7b3c83bdc1bea87aa0.tar.gz
nixlib-c14b54d67b3bf7ecbf716c7b3c83bdc1bea87aa0.tar.bz2
nixlib-c14b54d67b3bf7ecbf716c7b3c83bdc1bea87aa0.tar.lz
nixlib-c14b54d67b3bf7ecbf716c7b3c83bdc1bea87aa0.tar.xz
nixlib-c14b54d67b3bf7ecbf716c7b3c83bdc1bea87aa0.tar.zst
nixlib-c14b54d67b3bf7ecbf716c7b3c83bdc1bea87aa0.zip
unit: remove withRuby_2_5 option
Diffstat (limited to 'pkgs/servers/http/unit')
-rw-r--r--pkgs/servers/http/unit/default.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/servers/http/unit/default.nix b/pkgs/servers/http/unit/default.nix
index a5d5e37487aa..8170ae79c32c 100644
--- a/pkgs/servers/http/unit/default.nix
+++ b/pkgs/servers/http/unit/default.nix
@@ -7,7 +7,6 @@
 , withPerl530 ? false, perl530
 , withPerl532 ? true, perl532
 , withPerldevel ? false, perldevel
-, withRuby_2_5 ? false, ruby_2_5
 , withRuby_2_6 ? true, ruby_2_6
 , withRuby_2_7 ? false, ruby_2_7
 , withSSL ? true, openssl ? null
@@ -51,7 +50,6 @@ in stdenv.mkDerivation rec {
     ++ optional withPerl530 perl530
     ++ optional withPerl532 perl532
     ++ optional withPerldevel perldevel
-    ++ optional withRuby_2_5 ruby_2_5
     ++ optional withRuby_2_6 ruby_2_6
     ++ optional withRuby_2_7 ruby_2_7
     ++ optional withSSL openssl;
@@ -77,7 +75,6 @@ in stdenv.mkDerivation rec {
     ${optionalString withPerl530    "./configure perl   --module=perl530  --perl=${perl530}/bin/perl"}
     ${optionalString withPerl532    "./configure perl   --module=perl532  --perl=${perl532}/bin/perl"}
     ${optionalString withPerldevel  "./configure perl   --module=perldev  --perl=${perldevel}/bin/perl"}
-    ${optionalString withRuby_2_5   "./configure ruby   --module=ruby25   --ruby=${ruby_2_5}/bin/ruby"}
     ${optionalString withRuby_2_6   "./configure ruby   --module=ruby26   --ruby=${ruby_2_6}/bin/ruby"}
     ${optionalString withRuby_2_7   "./configure ruby   --module=ruby27   --ruby=${ruby_2_7}/bin/ruby"}
   '';