mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 08:34:50 +00:00
24 lines
601 B
Nix
24 lines
601 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "tut";
|
|
version = "0.0.20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RasmusLindroth";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "03jiv5m807z96796fbpi6ny22am3sq4jfni37fxbld05sxdzwcnd";
|
|
};
|
|
|
|
vendorSha256 = "1in5b7ixnm5iizkzziqclvgaq87ccdh507amkgfhfy5sxsgbfb1g";
|
|
|
|
meta = with lib; {
|
|
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;
|
|
};
|
|
}
|