biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / tut / default.nix
blobf6094f516694c08d5091fcd5407880a49e45c431
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "tut";
5   version = "2.0.1";
7   src = fetchFromGitHub {
8     owner = "RasmusLindroth";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-AtwwLRZx9O8IWPFgFI/ZK0tbeshEmaKpTQxA1PepnWM=";
12   };
14   vendorHash = "sha256-gPF4XrUqDDJCCY1zrUr3AXDG0uoADR8LBxRP4yolcug=";
16   meta = with lib; {
17     description = "TUI for Mastodon with vim inspired keys";
18     homepage = "https://github.com/RasmusLindroth/tut";
19     license = licenses.mit;
20     maintainers = with maintainers; [ equirosa ];
21     mainProgram = "tut";
22   };