feat(third_party): Add Go packages for src-d/go-git
This is going to be used in my git syncing tool for the cgit setup.
This commit is contained in:
parent
3fb29b1843
commit
36fa320e55
11 changed files with 173 additions and 0 deletions
12
third_party/gopkgs/github.com/emirpasic/gods/default.nix
vendored
Normal file
12
third_party/gopkgs/github.com/emirpasic/gods/default.nix
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
pkgs.buildGo.external {
|
||||
path = "github.com/emirpasic/gods";
|
||||
|
||||
src = pkgs.third_party.fetchFromGitHub {
|
||||
owner = "emirpasic";
|
||||
repo = "gods";
|
||||
rev = "4e23915b9a82f35f320a68a395a7a5045c826932";
|
||||
sha256 = "00f8ch1rccakc62f9nj97hapvnx84z7wbcdmbmz7p802b9mxk5nl";
|
||||
};
|
||||
}
|
||||
16
third_party/gopkgs/github.com/jbenet/go-context/default.nix
vendored
Normal file
16
third_party/gopkgs/github.com/jbenet/go-context/default.nix
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
pkgs.buildGo.external {
|
||||
path = "github.com/jbenet/go-context";
|
||||
|
||||
src = pkgs.third_party.fetchFromGitHub {
|
||||
owner = "jbenet";
|
||||
repo = "go-context";
|
||||
rev = "d14ea06fba99483203c19d92cfcd13ebe73135f4";
|
||||
sha256 = "0q91f5549n81w3z5927n4a1mdh220bdmgl42zi3h992dcc4ls0sl";
|
||||
};
|
||||
|
||||
deps = with pkgs.third_party; map (p: p.gopkg) [
|
||||
gopkgs."golang.org".x.net.context
|
||||
];
|
||||
}
|
||||
15
third_party/gopkgs/github.com/kevinburke/ssh_config/default.nix
vendored
Normal file
15
third_party/gopkgs/github.com/kevinburke/ssh_config/default.nix
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
pkgs.buildGo.external {
|
||||
path = "github.com/kevinburke/ssh_config";
|
||||
|
||||
src = pkgs.third_party.fetchFromGitHub {
|
||||
owner = "kevinburke";
|
||||
repo = "ssh_config";
|
||||
rev = "01f96b0aa0cdcaa93f9495f89bbc6cb5a992ce6e";
|
||||
sha256 = "1bxfjkjl3ibzdkwyvgdwawmd0skz30ah1ha10rg6fkxvj7lgg4jz";
|
||||
};
|
||||
|
||||
deps = with pkgs.third_party; map (p: p.gopkg) [
|
||||
];
|
||||
}
|
||||
12
third_party/gopkgs/github.com/mitchellh/go-homedir/default.nix
vendored
Normal file
12
third_party/gopkgs/github.com/mitchellh/go-homedir/default.nix
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
pkgs.buildGo.external {
|
||||
path = "github.com/mitchellh/go-homedir";
|
||||
|
||||
src = pkgs.third_party.fetchFromGitHub {
|
||||
owner = "mitchellh";
|
||||
repo = "go-homedir";
|
||||
rev = "af06845cf3004701891bf4fdb884bfe4920b3727";
|
||||
sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1";
|
||||
};
|
||||
}
|
||||
12
third_party/gopkgs/github.com/sergi/go-diff/default.nix
vendored
Normal file
12
third_party/gopkgs/github.com/sergi/go-diff/default.nix
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
pkgs.buildGo.external {
|
||||
path = "github.com/sergi/go-diff";
|
||||
|
||||
src = pkgs.third_party.fetchFromGitHub {
|
||||
owner = "sergi";
|
||||
repo = "go-diff";
|
||||
rev = "58c5cb1602ee9676b5d3590d782bedde80706fcc";
|
||||
sha256 = "0ir8ali2vx0j7pipmlfd6k8c973akyy2nmbjrf008fm800zcp7z2";
|
||||
};
|
||||
}
|
||||
16
third_party/gopkgs/github.com/src-d/gcfg/default.nix
vendored
Normal file
16
third_party/gopkgs/github.com/src-d/gcfg/default.nix
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
pkgs.buildGo.external {
|
||||
path = "github.com/src-d/gcfg";
|
||||
|
||||
src = pkgs.third_party.fetchFromGitHub {
|
||||
owner = "src-d";
|
||||
repo = "gcfg";
|
||||
rev = "1ac3a1ac202429a54835fe8408a92880156b489d";
|
||||
sha256 = "044j95skmyrwjw5fwjk6ka32rjgsg0ar0mfp9np19sh1acwv4x4r";
|
||||
};
|
||||
|
||||
deps = with pkgs.third_party; map (p: p.gopkg) [
|
||||
gopkgs."gopkg.in".warnings
|
||||
];
|
||||
}
|
||||
16
third_party/gopkgs/github.com/xanzy/ssh-agent/default.nix
vendored
Normal file
16
third_party/gopkgs/github.com/xanzy/ssh-agent/default.nix
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
pkgs.buildGo.external {
|
||||
path = "github.com/xanzy/ssh-agent";
|
||||
|
||||
src = pkgs.third_party.fetchFromGitHub {
|
||||
owner = "xanzy";
|
||||
repo = "ssh-agent";
|
||||
rev = "6a3e2ff9e7c564f36873c2e36413f634534f1c44";
|
||||
sha256 = "1chjlnv5d6svpymxgsr62d992m2xi6jb5lybjc5zn1h3hv1m01av";
|
||||
};
|
||||
|
||||
deps = with pkgs.third_party; map (p: p.gopkg) [
|
||||
gopkgs."golang.org".x.crypto.ssh.agent
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue