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

24 lines
601 B
Nix
Raw Normal View History

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