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
14 lines
296 B
Nix
14 lines
296 B
Nix
{ depot, pkgs, ... }:
|
|
|
|
depot.nix.buildGo.external {
|
|
path = "github.com/rivo/uniseg";
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "rivo";
|
|
repo = "uniseg";
|
|
rev = "v0.1.0";
|
|
sha256 = "0flpc1px1l6b1lxzhdxi0mvpkkjchppvgxshxxnlmm40s76i9ww5";
|
|
};
|
|
|
|
deps = with depot.third_party; [
|
|
];
|
|
}
|