depot/third_party/gopkgs/golang.org/x/net/default.nix

19 lines
594 B
Nix

# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ depot, ... }:
depot.third_party.buildGo.external {
path = "golang.org/x/net";
src = depot.third_party.nixpkgs.fetchFromGitHub {
owner = "golang";
repo = "net";
rev = "6a13c67c3ce400be1b91076053a994c2d1ebf01b";
hash = "sha256:1iia85dy1i755xrrlaj273skanvpkipwb000k4irn7zg5h6d41z1";
};
deps = with depot.third_party; [
gopkgs."golang.org".x.text.secure.bidirule
gopkgs."golang.org".x.text.unicode.bidi
gopkgs."golang.org".x.text.unicode.norm
];
}