summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorSusan Potter <me@susanpotter.net>2015-06-22 13:14:19 -0500
committerSusan Potter <me@susanpotter.net>2015-06-23 11:58:29 -0500
commit296870710107f1ce0c84faa36a8486c88a003417 (patch)
tree6a34ef04c110616e72285f4ebb2ee489da162287 /pkgs/development
parentbd003198b374c445caa56bd710eb93a01ae733ae (diff)
downloadnixlib-296870710107f1ce0c84faa36a8486c88a003417.tar
nixlib-296870710107f1ce0c84faa36a8486c88a003417.tar.gz
nixlib-296870710107f1ce0c84faa36a8486c88a003417.tar.bz2
nixlib-296870710107f1ce0c84faa36a8486c88a003417.tar.lz
nixlib-296870710107f1ce0c84faa36a8486c88a003417.tar.xz
nixlib-296870710107f1ce0c84faa36a8486c88a003417.tar.zst
nixlib-296870710107f1ce0c84faa36a8486c88a003417.zip
jruby: 1.7.12 -> 1.7.20.1
Security release which only updates Rubygems to version 2.4.8. Rubygems 2.4.8
addresses CVE-2015-1855 to resolve some problems with wildcard matching of
hostnames.

See following entry for more information:
http://jruby.org/2015/06/10/jruby-1-7-20-1.html
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/interpreters/jruby/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/jruby/default.nix b/pkgs/development/interpreters/jruby/default.nix
index ab559aa9e659..bc76e334b551 100644
--- a/pkgs/development/interpreters/jruby/default.nix
+++ b/pkgs/development/interpreters/jruby/default.nix
@@ -3,11 +3,11 @@
 stdenv.mkDerivation rec {
   name = "jruby-${version}";
 
-  version = "1.7.12";
+  version = "1.7.20.1";
 
   src = fetchurl {
     url = "http://jruby.org.s3.amazonaws.com/downloads/${version}/jruby-bin-${version}.tar.gz";
-    sha1 = "056cee1138e49da40a77f179b771372692479002";
+    sha1 = "6a6e701a3a5769ec5d53a78660521c37da36e41f";
   };
 
   buildInputs = [ makeWrapper ];