tvl-depot/scratch/deepmind/part_two/shell.nix
William Carroll bd67b07f52 Add default value for pkgs parameter in shell.nix
Commands like `nix-shell shell.nix` couldn't resolve `pkgs` without a default
value. I'm unsure how I expected this to work previously...
2020-03-13 16:52:40 +00:00

10 lines
133 B
Nix

{ pkgs ? import <nixpkgs> {}, ... }:
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
python3
go
goimports
];
}