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