devshell/shells/ruby.nix

11 lines
194 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
];
2024-03-10 12:10:58 +05:30
shellHook = ''
export BUNDLE_USER_HOME="$PWD/.nix/bundle"
'';
2024-03-10 10:13:01 +05:30
}