Commit 2e7b72c5 authored by Raito Bezarius's avatar Raito Bezarius
Browse files

gitlab: use Ruby 3.2

Ruby 3.0 will be removed.
parent 374917fa
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ 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;