pkgs/redmine: Pin Ruby version to 3.2

Redmine is not compatible to Ruby 3.3 yet and so pin it to Ruby 3.2.

Signed-off-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Felix Singer
2024-10-01 06:16:15 +02:00
parent 122d20b8ba
commit cb94bc8cbb
+2 -2
View File
@@ -1,11 +1,11 @@
{ lib, stdenv, fetchurl, bundlerEnv, ruby, makeWrapper, nixosTests }:
{ lib, stdenv, fetchurl, bundlerEnv, ruby_3_2, makeWrapper, nixosTests }:
let
version = "5.1.3";
rubyEnv = bundlerEnv {
name = "redmine-env-${version}";
inherit ruby;
ruby = ruby_3_2;
gemdir = ./.;
groups = [ "development" "ldap" "markdown" "common_mark" "minimagick" "test" ];
};