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

25 lines
614 B
Nix
Raw Normal View History

2020-04-04 01:00:09 +02:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "tut";
2020-06-29 21:26:21 +02:00
version = "0.0.10";
2020-04-04 01:00:09 +02:00
goPackagePath = "github.com/RasmusLindroth/tut";
goDeps = ./deps.nix;
src = fetchFromGitHub {
owner = "RasmusLindroth";
repo = pname;
rev = version;
2020-06-29 21:26:21 +02:00
sha256 = "09l6dmzrvcpix3wg4djs6zk3ql6b6lfhd8z9aglbi6fix4pm8565";
2020-04-04 01:00:09 +02: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;
};
}