diff options
| author | JoƩ Dupuis <joe@dupuis.io> | 2024-06-13 22:47:23 -0700 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-06-14 23:39:45 +0000 |
| commit | 661debb31e7e35f4b9de63621bd68bc8e2fa24f2 (patch) | |
| tree | 1d43fdbaf26191b382187fb670b9109c86ba5146 | |
| parent | Merge pull request #318775 from NixOS/backport-318760-to-release-24.05 (diff) | |
| download | nixpkgs-origin/backport-319727-to-release-24.05.tar.gz | |
Update REXML to fix a dependency resolution issue.origin/backport-319727-to-release-24.05
REXML accidentally added a version pin on a default gem (strscan)
without bumping the major version.
REXML removed the pin on strscan in 3.3.0
https://github.com/ruby/rexml/commit/f1df7d13b3e57a5e059273d2f0870163c08d7420#diff-75d0a867bbfd5e375164c17cf7a9df96761fb050e7308f3918ad6fe1fe12d27dL58
(cherry picked from commit 5ba6bb7ad9710e6aeb9a2b23d45d24ed5055d59a)
| -rw-r--r-- | pkgs/top-level/ruby-packages.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/top-level/ruby-packages.nix b/pkgs/top-level/ruby-packages.nix index 18819de3029c..62d65ff03b8d 100644 --- a/pkgs/top-level/ruby-packages.nix +++ b/pkgs/top-level/ruby-packages.nix @@ -3127,10 +3127,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "sha256-CQioY4HZ+XOCRoDfTgp1QidmJy8DscDknbfnnCPbETU="; + sha256 = "0428ady49qssmnmwnafzrjvyba8mzbridsgblv7c7kmd0vqgfn99"; type = "gem"; }; - version = "3.2.8"; + version = "3.3.0"; }; rmagick = { dependencies = ["observer" "pkg-config"]; |
