about summary refs log blame commit diff
path: root/third_party/gopkgs/golang.org/x/net/default.nix
blob: 450369d694597a43f8862d55eee36fbd21c84d3a (plain) (tree)
1
2
3
4
5
6
7
8
9
               
 
                        


                                            
                                                     

    
                                  




                                                    
{ depot, ... }:

depot.buildGo.external {
  path = "golang.org/x/net";
  src = builtins.fetchGit {
    url = "https://go.googlesource.com/net";
    rev = "c0dbc17a35534bf2e581d7a942408dc936316da4";
  };

  deps = with depot.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
  ];
}