nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / by-name / bo / bombadillo / package.nix
blob74ae658239396842adcf668e809f1848d4d137fb
2   lib,
3   fetchgit,
4   buildGoModule,
5   installShellFiles,
6 }:
8 buildGoModule rec {
9   pname = "bombadillo";
10   version = "2.4.0";
12   src = fetchgit {
13     url = "https://tildegit.org/sloum/bombadillo.git";
14     rev = version;
15     hash = "sha256-FjU9AyRAdGFr1bVpkmj5STkbzCXvpxOaOj7WNQJq7A0=";
16   };
18   nativeBuildInputs = [ installShellFiles ];
20   vendorHash = null;
22   outputs = [
23     "out"
24     "man"
25   ];
27   postInstall = ''
28     installManPage bombadillo.1
29   '';
31   meta = with lib; {
32     description = "Non-web client for the terminal, supporting Gopher, Gemini and more";
33     mainProgram = "bombadillo";
34     homepage = "https://bombadillo.colorfield.space/";
35     license = licenses.gpl3;
36     maintainers = with maintainers; [ ehmry ];
37   };