1
0
Fork 0
mirror of https://github.com/cachix/install-nix-action.git synced 2025-06-08 08:37:01 +09:00
install-nix-action/shell.nix
2019-11-07 10:19:07 +01:00

8 lines
119 B
Nix

{ pkgs ? import <nixpkgs> {}
}:
pkgs.mkShell {
name = "install-nix-action-shell";
buildInputs = [ pkgs.yarn ];
}