about summary refs log tree commit diff
path: root/third_party/gopkgs/github.com/charmbracelet/bubbles/default.nix
blob: e041edd4b6988f30ab5701e2eb43ce555f2f0b01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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
  ];
}