nixpkgs-suyu/pkgs/applications/networking/browsers/bombadillo/default.nix

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

30 lines
693 B
Nix
Raw Normal View History

2021-02-08 01:18:20 +01:00
{ lib, fetchgit, buildGoModule, installShellFiles }:
2020-11-27 10:22:56 +01:00
buildGoModule rec {
pname = "bombadillo";
2022-03-08 04:06:08 +01:00
version = "2.4.0";
2020-11-27 10:22:56 +01:00
src = fetchgit {
url = "https://tildegit.org/sloum/bombadillo.git";
rev = version;
2022-03-08 04:06:08 +01:00
sha256 = "sha256-FjU9AyRAdGFr1bVpkmj5STkbzCXvpxOaOj7WNQJq7A0=";
2020-11-27 10:22:56 +01:00
};
2021-02-08 01:18:20 +01:00
nativeBuildInputs = [ installShellFiles ];
vendorSha256 = null;
2020-11-27 10:22:56 +01:00
2021-02-08 01:18:20 +01:00
outputs = [ "out" "man" ];
postInstall = ''
installManPage bombadillo.1
'';
2020-11-27 10:22:56 +01:00
meta = with lib; {
description = "Non-web client for the terminal, supporting Gopher, Gemini and more";
homepage = "https://bombadillo.colorfield.space/";
license = licenses.gpl3;
maintainers = with maintainers; [ ehmry ];
};
}