mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-09 12:09:08 +00:00
8 lines
112 B
Nix
8 lines
112 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.nix-prefetch-git
|
|
pkgs.go
|
|
];
|
|
}
|