blob: 9610157d31ecef5f8470bc104b90b35673176a28 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ 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.text.secure.bidirule.gopkg
# gopkgs."golang.org".x.text.unicode.bidi.gopkg
# gopkgs."golang.org".x.text.unicode.norm.gopkg
];
}
|