diff options
Diffstat (limited to 'pkgs/amfora/default.nix')
-rw-r--r-- | pkgs/amfora/default.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/amfora/default.nix b/pkgs/amfora/default.nix new file mode 100644 index 0000000..8abecdc --- /dev/null +++ b/pkgs/amfora/default.nix @@ -0,0 +1,26 @@ +{ stdenv, buildGoModule, fetchFromGitHub }: + +buildGoModule rec { + pname = "amfora"; + version = "1.4.0"; + + src = fetchFromGitHub { + owner = "makeworld-the-better-one"; + repo = pname; + rev = "v${version}"; + sha256 = "1z4r1yqy5nkfa7yqcsqpqfdcghw8idryzb3s6d6ibca47r0qlcvw"; + }; + + # doCheck = false; + + buildFlags = [ ]; + + subPackages = [ "." ]; + + meta = with stdenv.lib; { + description = "A fancy terminal browser for the Gemini protocol."; + homepage = "https://github.com/makeworld-the-better-one/amfora"; + license = licenses.gpl30; + maintainers = with maintainers; [ pniedzwiedzinski ]; + }; +} |