nix-scripts/artiq-fast/wfvm/bundle/shell.nix

14 lines
128 B
Nix
Raw Normal View History

2020-06-11 16:22:35 +08:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.go
];
shellHook = ''
unset GOPATH
'';
}