From 952d5480bcd29ba28991503c25863c736e9ff85b Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Mon, 5 Apr 2021 13:56:17 +0200 Subject: feat(third_party/gopkgs): add charmbracelet/{bubbletea,bubbles} A small go TUI framework based on the Elm Architecture. Change-Id: I0c400a7b25af682735bfc5061db179e5d1dd75ab Reviewed-on: https://cl.tvl.fyi/c/depot/+/2853 Reviewed-by: Profpatsch Reviewed-by: lukegb Tested-by: BuildkiteCI --- .../gopkgs/github.com/mattn/go-runewidth/default.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 third_party/gopkgs/github.com/mattn/go-runewidth/default.nix (limited to 'third_party/gopkgs/github.com/mattn/go-runewidth/default.nix') diff --git a/third_party/gopkgs/github.com/mattn/go-runewidth/default.nix b/third_party/gopkgs/github.com/mattn/go-runewidth/default.nix new file mode 100644 index 000000000000..3186a066291d --- /dev/null +++ b/third_party/gopkgs/github.com/mattn/go-runewidth/default.nix @@ -0,0 +1,15 @@ +{ depot, pkgs, ... }: + +depot.nix.buildGo.external { + path = "github.com/mattn/go-runewidth"; + src = pkgs.fetchFromGitHub { + owner = "mattn"; + repo = "go-runewidth"; + rev = "v0.0.10"; + sha256 = "0jh9552ppqvkdfni7x623n0x5mbiaqqhjhmr0zkh28x56k4ysii4"; + }; + + deps = with depot.third_party; [ + gopkgs."github.com".rivo.uniseg + ]; +} -- cgit 1.4.1