chore(3p/gopkgs): 'depot.buildGo' -> 'depot.nix.buildGo'

This makes it possible to deprecate the previous alias.

Change-Id: I6efe73a21dc771cfa28094bbac434a188aebfd45
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2647
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
This commit is contained in:
Vincent Ambo 2021-03-24 01:19:17 +02:00 committed by tazjin
parent 580d8fc37c
commit 3842c184b6
31 changed files with 31 additions and 31 deletions

View file

@ -1,6 +1,6 @@
{ depot, ... }:
depot.buildGo.external {
depot.nix.buildGo.external {
path = "golang.org/x/crypto";
src = builtins.fetchGit {
url = "https://go.googlesource.com/crypto";

View file

@ -1,6 +1,6 @@
{ depot, ... }:
depot.buildGo.external {
depot.nix.buildGo.external {
path = "golang.org/x/net";
src = builtins.fetchGit {
url = "https://go.googlesource.com/net";

View file

@ -1,6 +1,6 @@
{ depot, ... }:
depot.buildGo.external {
depot.nix.buildGo.external {
path = "golang.org/x/oauth2";
src = builtins.fetchGit {
url = "https://go.googlesource.com/oauth2";

View file

@ -1,6 +1,6 @@
{ depot, ... }:
depot.buildGo.external {
depot.nix.buildGo.external {
path = "golang.org/x/sys";
src = builtins.fetchGit {
url = "https://go.googlesource.com/sys";

View file

@ -1,6 +1,6 @@
{ depot, ... }:
depot.buildGo.external {
depot.nix.buildGo.external {
path = "golang.org/x/text";
src = builtins.fetchGit {
url = "https://go.googlesource.com/text";

View file

@ -1,6 +1,6 @@
{ depot, ... }:
depot.buildGo.external {
depot.nix.buildGo.external {
path = "golang.org/x/time";
src = builtins.fetchGit {