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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
599 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";
2022-08-14 05:21:34 +02:00
version = "1.0.17";
2020-04-04 01:00:09 +02:00
src = fetchFromGitHub {
owner = "RasmusLindroth";
repo = pname;
rev = version;
2022-08-14 05:21:34 +02:00
sha256 = "sha256-XuN1qpcCUX8xAE7tj21g6U3ilhQIeGWlSqMVik5Qc5Q=";
2020-04-04 01:00:09 +02:00
};
2022-08-14 05:21:34 +02:00
vendorSha256 = "sha256-WdhTdF8kdjAg6ztwSwx+smaA0rrLZjE76r4oVJqMtFU=";
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;
};
}