tvl-depot/users/Profpatsch/struct-edit/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
362 B
Nix
Raw Normal View History

{ depot, ... }:
depot.nix.buildGo.program {
name = "struct-edit";
srcs = [
./main.go
];
deps = [
depot.third_party.gopkgs."github.com".charmbracelet.bubbletea
depot.third_party.gopkgs."github.com".charmbracelet.lipgloss
depot.third_party.gopkgs."github.com".muesli.termenv
depot.third_party.gopkgs."github.com".mattn.go-isatty
];
}