lol

update rubygems version (#35224)

authored by

Michael Fellinger and committed by zimbatm.tngl.sh 2682ba63 17952ee5

+8 -3
+6 -1
pkgs/development/interpreters/ruby/default.nix
··· 136 136 ++ op (stdenv.hostPlatform != stdenv.buildPlatform) 137 137 "--with-baseruby=${buildRuby}"; 138 138 139 + preInstall = '' 140 + # Ruby installs gems here itself now. 141 + mkdir -pv "$out/${passthru.gemPath}" 142 + export GEM_HOME="$out/${passthru.gemPath}" 143 + ''; 144 + 139 145 installFlags = stdenv.lib.optionalString docSupport "install-doc"; 140 146 # Bundler tries to create this directory 141 147 postInstall = '' ··· 148 154 sed -i '/NROFF/d' $out/lib/ruby/*/*/rbconfig.rb 149 155 150 156 # Bundler tries to create this directory 151 - mkdir -pv $out/${passthru.gemPath} 152 157 mkdir -p $out/nix-support 153 158 cat > $out/nix-support/setup-hook <<EOF 154 159 addGemPath() {
+2 -2
pkgs/development/interpreters/ruby/rubygems-src.nix
··· 1 1 { fetchurl 2 - , version ? "2.6.13" 3 - , sha256 ? "1j98ww8cz9y4wwshg7p4i4acrmls3ywkyj1nlkh4k3bywwm50hfh" 2 + , version ? "2.7.6" 3 + , sha256 ? "1sqy6z1kngq91nxmv1hw4xhw1ycwx9s76hfbpcdlgkm9haji9xv7" 4 4 }: 5 5 fetchurl { 6 6 url = "http://production.cf.rubygems.org/rubygems/rubygems-${version}.tgz";