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

29 lines
907 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, buildGoModule }:
2020-07-16 04:16:51 +02:00
buildGoModule rec {
pname = "amfora";
2021-02-18 06:00:49 +01:00
version = "1.8.0";
2020-07-16 04:16:51 +02:00
src = fetchFromGitHub {
owner = "makeworld-the-better-one";
repo = "amfora";
rev = "v${version}";
2021-02-18 06:00:49 +01:00
sha256 = "sha256-q83fKs27vkrUs3+AoKZ2342llj6u3bvbLsdnT9DnVUs=";
2020-07-16 04:16:51 +02:00
};
2021-02-18 06:00:49 +01:00
vendorSha256 = "sha256-0blHwZwOcgC4LcmZSJPRvyQzArCsaMGgIw+cesO+qOo=";
2020-07-16 04:16:51 +02: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 04:16:51 +02: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 ];
2021-02-10 19:42:05 +01:00
changelog = "https://github.com/makeworld-the-better-one/amfora/blob/v${version}/CHANGELOG.md";
2020-07-16 04:16:51 +02:00
};
}