diff options
author | Joris | 2020-01-28 09:55:58 +0100 |
---|---|---|
committer | Joris | 2020-01-29 10:12:31 +0100 |
commit | 1b6a7e0d00703e3da2e1620b5a2b2cba027161de (patch) | |
tree | 5143f784e1529d3b6c04116c84f09c426bb257b0 /shell.nix | |
parent | 197b6fa7aa810147d63209408c3a378ec552d0f4 (diff) |
Implement game of life
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..45261c8 --- /dev/null +++ b/shell.nix @@ -0,0 +1,17 @@ +with import <nixpkgs> {}; + +let unstable = import ( + fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz + ) {}; +in + +mkShell { + buildInputs = [ + entr + gzip + python3 + rustup + unstable.binaryen + wasm-pack + ]; +} |