nixpkgs/pkgs/applications/misc/tut/default.nix

24 lines
600 B
Nix
Raw Normal View History

2021-02-06 00:45:16 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2020-04-04 00:00:09 +01:00
2021-02-06 00:45:16 +00:00
buildGoModule rec {
2020-04-04 00:00:09 +01:00
pname = "tut";
2021-08-21 04:29:32 +01:00
version = "0.0.27";
2020-04-04 00:00:09 +01:00
src = fetchFromGitHub {
owner = "RasmusLindroth";
repo = pname;
rev = version;
2021-08-21 04:29:32 +01:00
sha256 = "sha256-P5tIu6cmh37haWJodBGmzgE8f0QUTwIQes9AuiaVSxU=";
2020-04-04 00:00:09 +01:00
};
2021-08-07 07:55:39 +01:00
vendorSha256 = "1zmwfgl1mayqcqk93368l94d6yah1qb0x11vf9b2x7zbzxzfshg9";
2021-02-06 00:45:16 +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;
};
}