about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--fun/watchblob/default.nix13
-rw-r--r--third_party/gopkgs/golang.org/x/crypto/default.nix4
2 files changed, 14 insertions, 3 deletions
diff --git a/fun/watchblob/default.nix b/fun/watchblob/default.nix
new file mode 100644
index 0000000000..51f14ab163
--- /dev/null
+++ b/fun/watchblob/default.nix
@@ -0,0 +1,13 @@
+{ pkgs, ... }:
+
+pkgs.buildGo.program {
+  name = "watchblob";
+  srcs = [
+    ./main.go
+    ./urls.go
+  ];
+
+  deps = with pkgs.third_party; [
+    gopkgs."golang.org".x.crypto.ssh.terminal.gopkg
+  ];
+}
diff --git a/third_party/gopkgs/golang.org/x/crypto/default.nix b/third_party/gopkgs/golang.org/x/crypto/default.nix
index 9610157d31..11c9b0ea8b 100644
--- a/third_party/gopkgs/golang.org/x/crypto/default.nix
+++ b/third_party/gopkgs/golang.org/x/crypto/default.nix
@@ -8,8 +8,6 @@ pkgs.buildGo.external {
   };
 
   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
+    gopkgs."golang.org".x.sys.unix.gopkg
   ];
 }