about summary refs log tree commit diff
path: root/third_party/gopkgs/github.com/src-d/gcfg/default.nix
blob: ed51f454715b269d6492e2ae65fcbb9a6eb6b296 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ depot, ... }:

depot.buildGo.external {
  path = "github.com/src-d/gcfg";

  src = depot.third_party.fetchFromGitHub {
    owner = "src-d";
    repo = "gcfg";
    rev = "1ac3a1ac202429a54835fe8408a92880156b489d";
    sha256 = "044j95skmyrwjw5fwjk6ka32rjgsg0ar0mfp9np19sh1acwv4x4r";
  };

  deps = with depot.third_party; [
    gopkgs."gopkg.in".warnings
  ];
}