about summary refs log tree commit diff
path: root/third_party/gopkgs/cloud.google.com/go/default.nix
blob: 655a4d284bd8b0a67e1ddc1feb2a98ce92437b52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, ... }:

pkgs.buildGo.external {
  path = "cloud.google.com/go";
  src = builtins.fetchGit {
    url = "https://code.googlesource.com/gocloud";
    rev = "76e973f7c1e722b4859698ace0daed4e7eccdc60";
  };

  deps = with pkgs.third_party; map (p: p.gopkg) [
  ];
}