chore: Rename pkgs->depot in all Nix file headers

This commit is contained in:
Vincent Ambo 2020-02-21 12:47:29 +00:00
parent 5d9d84f4cf
commit 4bbbb58cb5
113 changed files with 318 additions and 349 deletions

View file

@ -1,9 +1,9 @@
{ pkgs, ... }:
{ depot, ... }:
pkgs.buildGo.external {
depot.buildGo.external {
path = "github.com/emirpasic/gods";
src = pkgs.third_party.fetchFromGitHub {
src = depot.third_party.fetchFromGitHub {
owner = "emirpasic";
repo = "gods";
rev = "4e23915b9a82f35f320a68a395a7a5045c826932";

View file

@ -1,6 +1,6 @@
{ pkgs, ... }:
{ depot, ... }:
pkgs.buildGo.external {
depot.buildGo.external {
path = "github.com/golang/groupcache";
src = builtins.fetchGit {
url = "https://github.com/golang/groupcache";

View file

@ -1,12 +1,9 @@
{ pkgs, ... }:
{ depot, ... }:
pkgs.buildGo.external {
depot.buildGo.external {
path = "github.com/golang/protobuf";
src = builtins.fetchGit {
url = "https://github.com/golang/protobuf";
rev = "ed6926b37a637426117ccab59282c3839528a700";
};
deps = with pkgs.third_party; [
];
}

View file

@ -1,9 +1,9 @@
{ pkgs, ... }:
{ depot, ... }:
pkgs.buildGo.external {
depot.buildGo.external {
path = "github.com/google/uuid";
src = pkgs.third_party.fetchFromGitHub {
src = depot.third_party.fetchFromGitHub {
owner = "google";
repo = "uuid";
rev = "c2e93f3ae59f2904160ceaab466009f965df46d6";

View file

@ -1,16 +1,16 @@
{ pkgs, ... }:
{ depot, ... }:
let
inherit (pkgs) buildGo;
inherit (depot) buildGo;
inherit (builtins) fetchGit;
in pkgs.buildGo.external {
in depot.buildGo.external {
path = "github.com/googleapis/gax-go";
src = fetchGit {
url = "https://github.com/googleapis/gax-go";
rev = "b443e5a67ec8eeac76f5f384004931878cab24b3";
};
deps = with pkgs.third_party; [
deps = with depot.third_party; [
gopkgs."golang.org".x.net.trace.gopkg
gopkgs."google.golang.org".grpc.gopkg
gopkgs."google.golang.org".grpc.codes.gopkg

View file

@ -1,13 +1,13 @@
{ pkgs, ... }:
{ depot, ... }:
pkgs.buildGo.external {
depot.buildGo.external {
path = "github.com/hashicorp/golang-lru";
src = builtins.fetchGit {
url = "https://github.com/hashicorp/golang-lru";
rev = "7f827b33c0f158ec5dfbba01bb0b14a4541fd81d";
};
deps = with pkgs.third_party; map (p: p.gopkg) [
deps = with depot.third_party; map (p: p.gopkg) [
gopkgs."golang.org".x.net.context.ctxhttp
gopkgs."cloud.google.com".go.compute.metadata
];

View file

@ -1,16 +1,16 @@
{ pkgs, ... }:
{ depot, ... }:
pkgs.buildGo.external {
depot.buildGo.external {
path = "github.com/jbenet/go-context";
src = pkgs.third_party.fetchFromGitHub {
src = depot.third_party.fetchFromGitHub {
owner = "jbenet";
repo = "go-context";
rev = "d14ea06fba99483203c19d92cfcd13ebe73135f4";
sha256 = "0q91f5549n81w3z5927n4a1mdh220bdmgl42zi3h992dcc4ls0sl";
};
deps = with pkgs.third_party; map (p: p.gopkg) [
deps = with depot.third_party; map (p: p.gopkg) [
gopkgs."golang.org".x.net.context
];
}

View file

@ -1,15 +1,12 @@
{ pkgs, ... }:
{ depot, ... }:
pkgs.buildGo.external {
depot.buildGo.external {
path = "github.com/kevinburke/ssh_config";
src = pkgs.third_party.fetchFromGitHub {
src = depot.third_party.fetchFromGitHub {
owner = "kevinburke";
repo = "ssh_config";
rev = "01f96b0aa0cdcaa93f9495f89bbc6cb5a992ce6e";
sha256 = "1bxfjkjl3ibzdkwyvgdwawmd0skz30ah1ha10rg6fkxvj7lgg4jz";
};
deps = with pkgs.third_party; map (p: p.gopkg) [
];
}

View file

@ -1,9 +1,9 @@
{ pkgs, ... }:
{ depot, ... }:
pkgs.buildGo.external {
depot.buildGo.external {
path = "github.com/mitchellh/go-homedir";
src = pkgs.third_party.fetchFromGitHub {
src = depot.third_party.fetchFromGitHub {
owner = "mitchellh";
repo = "go-homedir";
rev = "af06845cf3004701891bf4fdb884bfe4920b3727";

View file

@ -1,9 +1,9 @@
{ pkgs, ... }:
{ depot, ... }:
pkgs.buildGo.external {
depot.buildGo.external {
path = "github.com/sergi/go-diff";
src = pkgs.third_party.fetchFromGitHub {
src = depot.third_party.fetchFromGitHub {
owner = "sergi";
repo = "go-diff";
rev = "58c5cb1602ee9676b5d3590d782bedde80706fcc";

View file

@ -1,16 +1,16 @@
{ pkgs, ... }:
{ depot, ... }:
pkgs.buildGo.external {
depot.buildGo.external {
path = "github.com/src-d/gcfg";
src = pkgs.third_party.fetchFromGitHub {
src = depot.third_party.fetchFromGitHub {
owner = "src-d";
repo = "gcfg";
rev = "1ac3a1ac202429a54835fe8408a92880156b489d";
sha256 = "044j95skmyrwjw5fwjk6ka32rjgsg0ar0mfp9np19sh1acwv4x4r";
};
deps = with pkgs.third_party; map (p: p.gopkg) [
deps = with depot.third_party; map (p: p.gopkg) [
gopkgs."gopkg.in".warnings
];
}

View file

@ -1,16 +1,16 @@
{ pkgs, ... }:
{ depot, ... }:
pkgs.buildGo.external {
depot.buildGo.external {
path = "github.com/xanzy/ssh-agent";
src = pkgs.third_party.fetchFromGitHub {
src = depot.third_party.fetchFromGitHub {
owner = "xanzy";
repo = "ssh-agent";
rev = "6a3e2ff9e7c564f36873c2e36413f634534f1c44";
sha256 = "1chjlnv5d6svpymxgsr62d992m2xi6jb5lybjc5zn1h3hv1m01av";
};
deps = with pkgs.third_party; map (p: p.gopkg) [
deps = with depot.third_party; map (p: p.gopkg) [
gopkgs."golang.org".x.crypto.ssh.agent
];
}