2020-10-04 13:36:31 +00:00
|
|
|
# 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";
|
2021-11-20 23:46:53 +00:00
|
|
|
rev = "6a13c67c3ce400be1b91076053a994c2d1ebf01b";
|
|
|
|
hash = "sha256:1iia85dy1i755xrrlaj273skanvpkipwb000k4irn7zg5h6d41z1";
|
2020-10-04 13:36:31 +00:00
|
|
|
};
|
2020-11-04 17:10:15 +00:00
|
|
|
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
|
|
|
|
];
|
2020-10-04 13:36:31 +00:00
|
|
|
}
|