blob: cabdeb9534cf144d193f76870f4741067690df0e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{ depot, pkgs, ... }:
depot.buildGo.external {
path = "cloud.google.com/go";
src = builtins.fetchGit {
url = "https://code.googlesource.com/gocloud";
rev = "4f03f8e4ba168c636e1c218da7ab41a1c8c0d8cf";
};
}
|