blob: 2129f8b538b2f7b29f0e9369aba500a6bda30fb1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ depot, ... }:
depot.buildGo.external {
path = "golang.org/x/crypto";
src = builtins.fetchGit {
url = "https://go.googlesource.com/crypto";
rev = "e9b2fee46413994441b28dfca259d911d963dfed";
};
deps = with depot.third_party; [
gopkgs."golang.org".x.sys.unix.gopkg
];
}
|