mirror of
https://github.com/tailscale/tailscale.git
synced 2025-12-26 12:26:47 +00:00
8 lines
111 B
Nix
8 lines
111 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
go goimports gopls git
|
|
];
|
|
}
|