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
16 lines
411 B
Nix
16 lines
411 B
Nix
{ depot, pkgs, ... }:
|
|
|
|
depot.nix.buildGo.external {
|
|
path = "github.com/charmbracelet/bubbles";
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "charmbracelet";
|
|
repo = "bubbles";
|
|
# unreleased version required by bubbletea
|
|
rev = "v0.7.6";
|
|
sha256 = "1gd4k4f2mj2dnqcbpdrh9plziz0l29ls6mgyy4mfdcdfijfyd30n";
|
|
};
|
|
|
|
deps = with depot.third_party; [
|
|
gopkgs."github.com".charmbracelet.bubbletea
|
|
];
|
|
}
|