tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gitlab: use Ruby 3.2
Ruby 3.0 will be removed.
Raito Bezarius
2 years ago
2e7b72c5
374917fa
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
version-management
gitlab
default.nix
+2
-2
pkgs/applications/version-management/gitlab/default.nix
···
1
1
{ stdenv, lib, fetchurl, fetchpatch, fetchFromGitLab, bundlerEnv
2
2
-
, ruby_3_0, tzdata, git, nettools, nixosTests, nodejs, openssl
2
2
+
, ruby_3_2, tzdata, git, nettools, nixosTests, nodejs, openssl
3
3
, gitlabEnterprise ? false, callPackage, yarn
4
4
, fixup_yarn_lock, replace, file, cacert, fetchYarnDeps, makeWrapper, pkg-config
5
5
}:
···
17
17
18
18
rubyEnv = bundlerEnv rec {
19
19
name = "gitlab-env-${version}";
20
20
-
ruby = ruby_3_0;
20
20
+
ruby = ruby_3_2;
21
21
gemdir = ./rubyEnv;
22
22
gemset =
23
23
let x = import (gemdir + "/gemset.nix") src;