about summary refs log tree commit diff
path: root/third_party/gopkgs/golang.org/x/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/gopkgs/golang.org/x/crypto')
-rw-r--r--third_party/gopkgs/golang.org/x/crypto/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/third_party/gopkgs/golang.org/x/crypto/default.nix b/third_party/gopkgs/golang.org/x/crypto/default.nix
new file mode 100644
index 000000000000..dfaf4ac85672
--- /dev/null
+++ b/third_party/gopkgs/golang.org/x/crypto/default.nix
@@ -0,0 +1,13 @@
+{ depot, ... }:
+
+depot.nix.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
+  ];
+}