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