tvl-depot/third_party/gopkgs/github.com/src-d/gcfg/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

16 lines
376 B
Nix

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