blob: c7c50795c0173124396cb3f801f4aa37fea8a7c3 (
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/muesli/reflow";
src = pkgs.fetchFromGitHub {
owner = "muesli";
repo = "reflow";
# unreleased version required by bubbletea
rev = "9e1d0d53df68baf262851201166872afafd04e5d";
sha256 = "08bmkqdn7sb5laqc1mvgk4xj31f600n1y04s1ifppjvszbcsxhid";
};
deps = with depot.third_party; [
gopkgs."github.com".mattn.go-runewidth
];
}
|