install-nix-action/shell.nix

9 lines
119 B
Nix
Raw Normal View History

2019-11-07 09:19:07 +00:00
{ pkgs ? import <nixpkgs> {}
}:
pkgs.mkShell {
name = "install-nix-action-shell";
buildInputs = [ pkgs.yarn ];
}