add shell.nix for easier development

This commit is contained in:
Domen Kožar 2019-11-07 10:19:07 +01:00
parent 4ad20b153f
commit 9c08345130
No known key found for this signature in database
GPG key ID: C2FFBCAFD2C24246

8
shell.nix Normal file
View file

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