952d5480bc
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 <mail@profpatsch.de> Reviewed-by: lukegb <lukegb@tvl.fyi> Tested-by: BuildkiteCI
15 lines
347 B
Nix
15 lines
347 B
Nix
{ 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
|
|
];
|
|
}
|