Merge pull request #261971 from r-ryantm/auto-update/jruby

jruby: 9.4.3.0 -> 9.4.4.0

authored by

Mario Rodas and committed by
GitHub
e42b2e2c 282c55dd

+7 -4
+7 -4
pkgs/development/interpreters/jruby/default.nix
··· 1 - { lib, stdenv, callPackage, fetchurl, mkRubyVersion, makeBinaryWrapper, jre }: 2 3 let 4 # The version number here is whatever is reported by the RUBY_VERSION string ··· 6 in 7 stdenv.mkDerivation (finalAttrs: { 8 pname = "jruby"; 9 - version = "9.4.3.0"; 10 11 src = fetchurl { 12 url = "https://s3.amazonaws.com/jruby.org/downloads/${finalAttrs.version}/jruby-bin-${finalAttrs.version}.tar.gz"; 13 - hash = "sha256-sJfgjFZp6KGIKI4RORHRK0rSvWeiwgnW36hEXWOk2Mk="; 14 }; 15 16 nativeBuildInputs = [ makeBinaryWrapper ]; ··· 52 devEnv = callPackage ../ruby/dev.nix { 53 ruby = finalAttrs.finalPackage; 54 }; 55 }; 56 57 meta = with lib; { 58 description = "Ruby interpreter written in Java"; 59 homepage = "https://www.jruby.org/"; 60 - changelog = "https://github.com/jruby/jruby/releases/tag/${version}"; 61 license = with licenses; [ cpl10 gpl2 lgpl21 ]; 62 platforms = jre.meta.platforms; 63 maintainers = [ maintainers.fzakaria ];
··· 1 + { lib, stdenv, callPackage, fetchurl, gitUpdater, mkRubyVersion, makeBinaryWrapper, jre }: 2 3 let 4 # The version number here is whatever is reported by the RUBY_VERSION string ··· 6 in 7 stdenv.mkDerivation (finalAttrs: { 8 pname = "jruby"; 9 + version = "9.4.4.0"; 10 11 src = fetchurl { 12 url = "https://s3.amazonaws.com/jruby.org/downloads/${finalAttrs.version}/jruby-bin-${finalAttrs.version}.tar.gz"; 13 + hash = "sha256-arEmcK/Y5ciskwX6vkIFV5XF3fn46PGh5g4mDy1yTMA="; 14 }; 15 16 nativeBuildInputs = [ makeBinaryWrapper ]; ··· 52 devEnv = callPackage ../ruby/dev.nix { 53 ruby = finalAttrs.finalPackage; 54 }; 55 + updateScript = gitUpdater { 56 + url = "https://github.com/jruby/jruby.git"; 57 + }; 58 }; 59 60 meta = with lib; { 61 description = "Ruby interpreter written in Java"; 62 homepage = "https://www.jruby.org/"; 63 + changelog = "https://github.com/jruby/jruby/releases/tag/${finalAttrs.version}"; 64 license = with licenses; [ cpl10 gpl2 lgpl21 ]; 65 platforms = jre.meta.platforms; 66 maintainers = [ maintainers.fzakaria ];