about summary refs log blame commit diff
path: root/third_party/gopkgs/golang.org/x/net/default.nix
blob: 571a2b1d362b1af430719d50ddd3b110824d2b8f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














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