gitlab: use Ruby 3.2

Ruby 3.0 will be removed.
This commit is contained in:
Raito Bezarius 2023-10-30 15:10:16 +01:00
parent 374917faf7
commit 2e7b72c52f

View File

@ -1,5 +1,5 @@
{ stdenv, lib, fetchurl, fetchpatch, fetchFromGitLab, bundlerEnv
, ruby_3_0, tzdata, git, nettools, nixosTests, nodejs, openssl
, ruby_3_2, tzdata, git, nettools, nixosTests, nodejs, openssl
, gitlabEnterprise ? false, callPackage, yarn
, fixup_yarn_lock, replace, file, cacert, fetchYarnDeps, makeWrapper, pkg-config
}:
@ -17,7 +17,7 @@ let
rubyEnv = bundlerEnv rec {
name = "gitlab-env-${version}";
ruby = ruby_3_0;
ruby = ruby_3_2;
gemdir = ./rubyEnv;
gemset =
let x = import (gemdir + "/gemset.nix") src;