2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2020-04-04 00:00:09 +01:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
pname = "tut";
|
2020-07-24 18:47:33 +01:00
|
|
|
version = "0.0.14";
|
2020-04-04 00:00:09 +01:00
|
|
|
|
|
|
|
goPackagePath = "github.com/RasmusLindroth/tut";
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "RasmusLindroth";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-07-24 18:47:33 +01:00
|
|
|
sha256 = "1l7lc6cjx97v9zhc0b6lfzqjmyv1i3qj83drkck36if3mc60vvwi";
|
2020-04-04 00:00:09 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-04 00:00:09 +01: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;
|
|
|
|
};
|
|
|
|
}
|