about summary refs log blame commit diff
path: root/third_party/gopkgs/golang.org/x/crypto/default.nix
blob: 11c9b0ea8b1b0a8c9bdd7a119c3f1cf8e7aa1143 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                     
                                        

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