about summary refs log tree commit diff
path: root/third_party/gopkgs/github.com/containerd/console/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/gopkgs/github.com/containerd/console/default.nix')
-rw-r--r--third_party/gopkgs/github.com/containerd/console/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/gopkgs/github.com/containerd/console/default.nix b/third_party/gopkgs/github.com/containerd/console/default.nix
new file mode 100644
index 0000000000..3f451019e0
--- /dev/null
+++ b/third_party/gopkgs/github.com/containerd/console/default.nix
@@ -0,0 +1,15 @@
+{ depot, pkgs, ... }:
+
+depot.nix.buildGo.external {
+  path = "github.com/containerd/console";
+  src = pkgs.fetchFromGitHub {
+    owner = "containerd";
+    repo = "console";
+    rev = "v1.0.1";
+    sha256 = "0s837wj6h80fykk2pdmaji75rw9c3863by0gh0cq51hh0lgyjpvg";
+  };
+
+  deps = with depot.third_party; [
+    gopkgs."golang.org".x.sys.unix
+  ];
+}