nixpkgs/pkgs/applications/networking/browsers/amfora/default.nix

23 lines
622 B
Nix
Raw Normal View History

2020-07-15 19:16:51 -07:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "amfora";
2020-08-01 08:43:39 -07:00
version = "1.4.0";
2020-07-15 19:16:51 -07:00
src = fetchFromGitHub {
owner = "makeworld-the-better-one";
repo = "amfora";
rev = "v${version}";
2020-08-01 08:43:39 -07:00
sha256 = "1z4r1yqy5nkfa7yqcsqpqfdcghw8idryzb3s6d6ibca47r0qlcvw";
2020-07-15 19:16:51 -07:00
};
2020-08-01 08:43:39 -07:00
vendorSha256 = "0xj2s14dq10fwqqxjn4d8x6zljd5d15gjbja2gb75rfv09s4fdgv";
2020-07-15 19:16:51 -07:00
meta = with lib; {
description = "A fancy terminal browser for the Gemini protocol";
homepage = "https://github.com/makeworld-the-better-one/amfora";
license = with licenses; [ gpl3 ];
maintainers = with maintainers; [ deifactor ];
};
}