tvl-depot/third_party/gopkgs/golang.org/x/crypto/default.nix
2020-02-21 13:54:53 +00:00

13 lines
293 B
Nix

{ 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
];
}