nixpkgs-ruby
nixpkgs-ruby copied to clipboard
Usage with nix-shell
Hello, is it possible to use this with nix-shell so we can run it with
nix-shell ruby.nix
where ruby.nix
may contain like this example
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs.buildPackages; [ nodejs_18 ];
}