2021-02-06 03:45:16 +03:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2020-04-04 02:00:09 +03:00
|
|
|
|
2021-02-06 03:45:16 +03:00
|
|
|
buildGoModule rec {
|
2020-04-04 02:00:09 +03:00
|
|
|
pname = "tut";
|
2023-01-27 03:30:14 +03:00
|
|
|
version = "2.0.1";
|
2020-04-04 02:00:09 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "RasmusLindroth";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-01-27 03:30:14 +03:00
|
|
|
sha256 = "sha256-AtwwLRZx9O8IWPFgFI/ZK0tbeshEmaKpTQxA1PepnWM=";
|
2020-04-04 02:00:09 +03:00
|
|
|
};
|
|
|
|
|
2023-01-27 03:30:14 +03:00
|
|
|
vendorHash = "sha256-gPF4XrUqDDJCCY1zrUr3AXDG0uoADR8LBxRP4yolcug=";
|
2021-02-06 03:45:16 +03:00
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2020-04-04 02:00:09 +03:00
|
|
|
description = "A TUI for Mastodon with vim inspired keys";
|
|
|
|
homepage = "https://github.com/RasmusLindroth/tut";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ equirosa ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|