blob: 9a8fef694857439a88bd266c92167aead5da9261 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ depot, pkgs, ... }:
depot.nix.buildGo.external {
path = "golang.org/x/net";
src = pkgs.fetchgit {
url = "https://go.googlesource.com/net";
rev = "c0dbc17a35534bf2e581d7a942408dc936316da4";
hash = "sha256:1f1xqh2cvr629fkg9n9k347vf6g91jkrsmgmy8hlqdrq163blb54";
};
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
];
}
|