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

25 lines
613 B
Nix
Raw Normal View History

2020-04-03 23:00:09 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "tut";
2020-05-08 23:17:24 +00:00
version = "0.0.8";
2020-04-03 23:00:09 +00:00
goPackagePath = "github.com/RasmusLindroth/tut";
goDeps = ./deps.nix;
src = fetchFromGitHub {
owner = "RasmusLindroth";
repo = pname;
rev = version;
2020-05-08 23:17:24 +00:00
sha256 = "0wb5lf0zbhmg962p71bqlpyxn8f1n9fp1jh7y7fcg6w5mga8gqq3";
2020-04-03 23:00:09 +00:00
};
meta = with stdenv.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;
};
}