9 lines
206 B
Nix
9 lines
206 B
Nix
let pkgs = import (fetchTarball "channel:nixpkgs-unstable") { };
|
|
in pkgs.mkShell {
|
|
buildInputs = [ pkgs.ruby pkgs.r-gems pkgs.jekyll ];
|
|
shellHook = ''
|
|
exec fish
|
|
exec gem install bundler
|
|
'';
|
|
}
|