about summary refs log blame commit diff
path: root/users/Profpatsch/struct-edit/default.nix
blob: 970cdd4d028ba8c169c2b1182430bfde1e80208e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                   
{ 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
    ];
}