18 lines
300 B
Nix
18 lines
300 B
Nix
{ pkgs }:
|
|
let
|
|
packages = builtins.attrValues {
|
|
inherit (pkgs) ruby;
|
|
inherit (pkgs.rubyPackages) solargraph;
|
|
};
|
|
in
|
|
{
|
|
inherit packages;
|
|
devShell = pkgs.mkShell {
|
|
inherit packages;
|
|
name = "ruby-dev-shell";
|
|
shellHook = ''
|
|
echo "💎 Ruby dev environment"
|
|
'';
|
|
};
|
|
}
|