add ruby shell

This commit is contained in:
Adithya 2024-03-10 10:13:01 +05:30
parent 1d6186d642
commit 29d1d225a7
Signed by: adtya
GPG key ID: 48FC9915FFD326D0
2 changed files with 6 additions and 0 deletions

View file

@ -27,6 +27,7 @@
java = import ./shells/java.nix { inherit pkgs; };
node = import ./shells/node.nix { inherit pkgs; };
python = import ./shells/python.nix { inherit pkgs; };
ruby = import ./shells/ruby.nix { inherit pkgs; };
rust = import ./shells/rust.nix { inherit pkgs; };
};
}

5
shells/ruby.nix Normal file
View file

@ -0,0 +1,5 @@
{ pkgs }: pkgs.mkShell {
buildInputs = with pkgs; [
ruby_3_2
];
}