mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-29 04:55:31 +00:00
comment out the shell.nix file
Signed-off-by: Christine Dodrill <xe@tailscale.com>
This commit is contained in:
parent
abaedc675b
commit
c03eaba1a6
4
.gitignore
vendored
4
.gitignore
vendored
@ -19,3 +19,7 @@ cmd/tailscaled/tailscaled
|
|||||||
|
|
||||||
# Dependency directories (remove the comment below to include it)
|
# Dependency directories (remove the comment below to include it)
|
||||||
# vendor/
|
# vendor/
|
||||||
|
|
||||||
|
# direnv config, this may be different for other people so it's probably safer
|
||||||
|
# to make this nonspecific.
|
||||||
|
.envrc
|
||||||
|
17
shell.nix
17
shell.nix
@ -1,6 +1,23 @@
|
|||||||
|
# This is a shell.nix file used to describe the environment that tailscale needs
|
||||||
|
# for development. This includes a lot of the basic tools that you need in order
|
||||||
|
# to get started. We hope this file will be useful for users of Nix on macOS or
|
||||||
|
# Linux.
|
||||||
|
#
|
||||||
|
# For more information about this and why this file is useful, see here:
|
||||||
|
# https://nixos.org/guides/nix-pills/developing-with-nix-shell.html
|
||||||
|
#
|
||||||
|
# Also look into direnv: https://direnv.net/, this can make it so that you can
|
||||||
|
# automatically get your environment set up when you change folders into the
|
||||||
|
# project.
|
||||||
{ pkgs ? import <nixpkgs> {} }:
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
|
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
|
# This specifies the tools that are needed for people to get started with
|
||||||
|
# development. These tools include:
|
||||||
|
# - The Go compiler toolchain (and all additional tooling with it)
|
||||||
|
# - goimports, a robust formatting tool for Go source code
|
||||||
|
# - gopls, the language server for Go to increase editor integration
|
||||||
|
# - git, the version control program (used in some scripts)
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
go goimports gopls git
|
go goimports gopls git
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user