add shell.nix for development

This commit is contained in:
Jörg Thalheim 2020-04-14 12:33:22 +01:00
commit 943a92d48d
No known key found for this signature in database
GPG key ID: 003F2096411B5F92

5
shell.nix Normal file
View file

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
nativeBuildInputs = [ yarn ];
}