devshell/shells/ruby.nix

8 lines
124 B
Nix
Raw Normal View History

2024-03-10 10:13:01 +05:30
{ pkgs }: pkgs.mkShell {
buildInputs = with pkgs; [
ruby_3_2
2024-03-10 10:20:11 +05:30
postgresql_15
2024-03-10 10:56:14 +05:30
rubyPackages_3_2.rspec-core
2024-03-10 10:13:01 +05:30
];
}