gomod2nix/shell.nix

9 lines
112 B
Nix
Raw Normal View History

2020-07-23 09:19:55 +00:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
buildInputs = [
pkgs.nix-prefetch-git
pkgs.go
];
}