mailcatcher: use Ruby 3.2
Ruby 3.0 will be removed.
This commit is contained in:
parent
58e351c6f1
commit
374917faf7
1 changed files with 2 additions and 2 deletions
|
@ -1,10 +1,10 @@
|
||||||
{ pkgs, lib, bundlerApp, bundlerUpdateScript }:
|
{ ruby_3_2, lib, bundlerApp, bundlerUpdateScript }:
|
||||||
|
|
||||||
bundlerApp {
|
bundlerApp {
|
||||||
pname = "mailcatcher";
|
pname = "mailcatcher";
|
||||||
gemdir = ./.;
|
gemdir = ./.;
|
||||||
exes = [ "mailcatcher" "catchmail" ];
|
exes = [ "mailcatcher" "catchmail" ];
|
||||||
ruby = pkgs.ruby_3_0;
|
ruby = ruby_3_2;
|
||||||
|
|
||||||
passthru.updateScript = bundlerUpdateScript "mailcatcher";
|
passthru.updateScript = bundlerUpdateScript "mailcatcher";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue