blob: 41c3b4e7263c78d72b7c8064a2beef04a10db88f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ depot, pkgs, ... }:
depot.nix.buildGo.external {
path = "golang.org/x/crypto";
src = pkgs.fetchgit {
url = "https://go.googlesource.com/crypto";
rev = "e9b2fee46413994441b28dfca259d911d963dfed";
hash = "sha256:18sz5426h320l9gdll9n43lzzxg2dmqv0s5fjy6sbvbkkpjs1m28";
};
deps = with depot.third_party; [
gopkgs."golang.org".x.sys.unix.gopkg
];
}
|