9594203e07
These packages contain the Cloud SDK for Go. There is currently a linker issue (presumably due to something in `buildGo.nix`) that means that projects using them can not actually be built.
15 lines
396 B
Nix
15 lines
396 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.buildGo.external {
|
|
path = "golang.org/x/net";
|
|
src = builtins.fetchGit {
|
|
url = "https://go.googlesource.com/net";
|
|
rev = "74dc4d7220e7acc4e100824340f3e66577424772";
|
|
};
|
|
|
|
deps = with pkgs.third_party; [
|
|
gopkgs."golang.org".x.text.secure.bidirule.gopkg
|
|
gopkgs."golang.org".x.text.unicode.bidi.gopkg
|
|
gopkgs."golang.org".x.text.unicode.norm.gopkg
|
|
];
|
|
}
|