about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2013-11-24 16:49:03 +0000
committerVladimír Čunát <vcunat@gmail.com>2013-12-02 20:11:58 +0100
commitb802a7be880becece15c378349c623128592c507 (patch)
treea68ccf4249ee31b550e5cdb804ed58c492b5dc64 /pkgs/development/interpreters
parentc8065de0afcc7f3d3b8381057a2f11f56846f643 (diff)
downloadnixlib-b802a7be880becece15c378349c623128592c507.tar
nixlib-b802a7be880becece15c378349c623128592c507.tar.gz
nixlib-b802a7be880becece15c378349c623128592c507.tar.bz2
nixlib-b802a7be880becece15c378349c623128592c507.tar.lz
nixlib-b802a7be880becece15c378349c623128592c507.tar.xz
nixlib-b802a7be880becece15c378349c623128592c507.tar.zst
nixlib-b802a7be880becece15c378349c623128592c507.zip
Updates ruby 1.8.7 to the latest patch-level. WARNING: unsupported
ruby 1.8 should be phased out as it contains security issues and is
unsupported by the ruby core team. This is the last update available but it
doesn't fix all CVEs.
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/ruby/ruby-18.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/ruby/ruby-18.nix b/pkgs/development/interpreters/ruby/ruby-18.nix
index e6cc755981b6..f37e8baa68d5 100644
--- a/pkgs/development/interpreters/ruby/ruby-18.nix
+++ b/pkgs/development/interpreters/ruby/ruby-18.nix
@@ -17,8 +17,8 @@ stdenv.mkDerivation rec {
   name = "ruby-${version}";
   
   src = fetchurl {
-    url = "http://cache.ruby-lang.org/pub/ruby/1.8/${name}.tar.gz";
-    sha256 = "0g2dsn8lmiqwqsp13ryzi97qxr7742v5l7v506x6wq9aiwpk42p6";
+    url = "http://cache.ruby-lang.org/pub/ruby/1.8/${name}.tar.bz2";
+    sha256 = "b4e34703137f7bfb8761c4ea474f7438d6ccf440b3d35f39cc5e4d4e239c07e3";
   };
 
   # Have `configure' avoid `/usr/bin/nroff' in non-chroot builds.
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
   passthru = rec {
     majorVersion = "1.8";
     minorVersion = "7";
-    patchLevel = "371";
+    patchLevel = "374";
     libPath = "lib/ruby/${majorVersion}";
     gemPath = "lib/ruby/gems/${majorVersion}";
   };