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

28 lines
807 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, buildGoModule }:
2020-07-16 02:16:51 +00:00
buildGoModule rec {
pname = "amfora";
2021-02-18 05:00:49 +00:00
version = "1.8.0";
2020-07-16 02:16:51 +00:00
src = fetchFromGitHub {
owner = "makeworld-the-better-one";
repo = "amfora";
rev = "v${version}";
2021-02-18 05:00:49 +00:00
sha256 = "sha256-q83fKs27vkrUs3+AoKZ2342llj6u3bvbLsdnT9DnVUs=";
2020-07-16 02:16:51 +00:00
};
2021-02-18 05:00:49 +00:00
vendorSha256 = "sha256-0blHwZwOcgC4LcmZSJPRvyQzArCsaMGgIw+cesO+qOo=";
2020-07-16 02:16:51 +00:00
postInstall = lib.optionalString (!stdenv.isDarwin) ''
sed -i "s:amfora:$out/bin/amfora:" amfora.desktop
install -Dm644 amfora.desktop -t $out/share/applications
'';
2020-07-16 02:16:51 +00: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 ];
};
}