mailcatcher: use Ruby 3.2

Ruby 3.0 will be removed.
This commit is contained in:
Raito Bezarius 2023-10-30 15:08:46 +01:00
parent 58e351c6f1
commit 374917faf7

View file

@ -1,10 +1,10 @@
{ pkgs, lib, bundlerApp, bundlerUpdateScript }:
{ ruby_3_2, lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "mailcatcher";
gemdir = ./.;
exes = [ "mailcatcher" "catchmail" ];
ruby = pkgs.ruby_3_0;
ruby = ruby_3_2;
passthru.updateScript = bundlerUpdateScript "mailcatcher";