about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/browsers/bombadillo/default.nix
blob: 96a968a50fe98a644b495f342dea65d860982bd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, fetchgit, buildGoModule, installShellFiles }:

buildGoModule rec {
  pname = "bombadillo";
  version = "2.4.0";

  src = fetchgit {
    url = "https://tildegit.org/sloum/bombadillo.git";
    rev = version;
    sha256 = "sha256-FjU9AyRAdGFr1bVpkmj5STkbzCXvpxOaOj7WNQJq7A0=";
  };

  nativeBuildInputs = [ installShellFiles ];

  vendorHash = null;

  outputs = [ "out" "man" ];

  postInstall = ''
    installManPage bombadillo.1
  '';

  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 ];
  };
}