tvl-depot/third_party/gopkgs/github.com/kevinburke/ssh_config/default.nix
Vincent Ambo 36fa320e55 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.
2019-12-19 16:25:47 +00:00

15 lines
367 B
Nix

{ 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) [
];
}