summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2018-02-14 09:53:54 +0000
committerGitHub <noreply@github.com>2018-02-14 09:53:54 +0000
commite8194c2c5b1710b3504dc7a954cc4d17cbd78ffd (patch)
treee3b396c8711f353854b46c0b8d6643b29660c35b /pkgs/applications
parentc80adf5f72b8ea4ebd83d04bfbfbdc4cebbeed6f (diff)
downloadnixlib-e8194c2c5b1710b3504dc7a954cc4d17cbd78ffd.tar
nixlib-e8194c2c5b1710b3504dc7a954cc4d17cbd78ffd.tar.gz
nixlib-e8194c2c5b1710b3504dc7a954cc4d17cbd78ffd.tar.bz2
nixlib-e8194c2c5b1710b3504dc7a954cc4d17cbd78ffd.tar.lz
nixlib-e8194c2c5b1710b3504dc7a954cc4d17cbd78ffd.tar.xz
nixlib-e8194c2c5b1710b3504dc7a954cc4d17cbd78ffd.tar.zst
nixlib-e8194c2c5b1710b3504dc7a954cc4d17cbd78ffd.zip
ruby: remove unsupported versions (#34927)
* remove EOL ruby versions for security and maintenance reasons.
* only expose ruby_MAJOR_MINOR to the top-level. we don't provide
guarantees for the TINY version.
* mark all related packages as broken
* switch the default ruby version from 2.3.x to 2.4.x
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/vim/macvim.nix1
-rw-r--r--pkgs/applications/misc/taskjuggler/default.nix1
-rw-r--r--pkgs/applications/networking/cluster/panamax/api/default.nix1
-rw-r--r--pkgs/applications/networking/cluster/panamax/ui/default.nix1
4 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/editors/vim/macvim.nix b/pkgs/applications/editors/vim/macvim.nix
index 144fb5428a51..b6c03a57b561 100644
--- a/pkgs/applications/editors/vim/macvim.nix
+++ b/pkgs/applications/editors/vim/macvim.nix
@@ -103,6 +103,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
+    broken = true; # needs ruby 2.2
     description = "Vim - the text editor - for macOS";
     homepage    = https://github.com/b4winckler/macvim;
     license = licenses.vim;
diff --git a/pkgs/applications/misc/taskjuggler/default.nix b/pkgs/applications/misc/taskjuggler/default.nix
index 23252d0c4807..c5429b6c8510 100644
--- a/pkgs/applications/misc/taskjuggler/default.nix
+++ b/pkgs/applications/misc/taskjuggler/default.nix
@@ -7,6 +7,7 @@ bundlerEnv {
   gemdir = ./.;
 
   meta = {
+    broken = true; # needs ruby 2.0
     description = "A modern and powerful project management tool";
     homepage    = http://taskjuggler.org/;
     license     = lib.licenses.gpl2;
diff --git a/pkgs/applications/networking/cluster/panamax/api/default.nix b/pkgs/applications/networking/cluster/panamax/api/default.nix
index 6a8fe2834912..1c2e2ccac27b 100644
--- a/pkgs/applications/networking/cluster/panamax/api/default.nix
+++ b/pkgs/applications/networking/cluster/panamax/api/default.nix
@@ -64,6 +64,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
+    broken = true; # needs ruby 2.1
     homepage = https://github.com/CenturyLinkLabs/panamax-api;
     description = "The API behind The Panamax UI";
     license = licenses.asl20;
diff --git a/pkgs/applications/networking/cluster/panamax/ui/default.nix b/pkgs/applications/networking/cluster/panamax/ui/default.nix
index 4a6481e3e5ee..2f60942f014b 100644
--- a/pkgs/applications/networking/cluster/panamax/ui/default.nix
+++ b/pkgs/applications/networking/cluster/panamax/ui/default.nix
@@ -62,6 +62,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
+    broken = true; # needs ruby 2.1
     homepage = https://github.com/CenturyLinkLabs/panamax-ui;
     description = "The Web GUI for Panamax";
     license = licenses.asl20;