evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / bo / bombadillo / package.nix
blobbd39100aab38bffe6da9849af8f0e99debaf6e56
1 { lib, fetchgit, buildGoModule, installShellFiles }:
3 buildGoModule rec {
4   pname = "bombadillo";
5   version = "2.4.0";
7   src = fetchgit {
8     url = "https://tildegit.org/sloum/bombadillo.git";
9     rev = version;
10     hash = "sha256-FjU9AyRAdGFr1bVpkmj5STkbzCXvpxOaOj7WNQJq7A0=";
11   };
13   nativeBuildInputs = [ installShellFiles ];
15   vendorHash = null;
17   outputs = [ "out" "man" ];
19   postInstall = ''
20     installManPage bombadillo.1
21   '';
23   meta = with lib; {
24     description = "Non-web client for the terminal, supporting Gopher, Gemini and more";
25     mainProgram = "bombadillo";
26     homepage = "https://bombadillo.colorfield.space/";
27     license = licenses.gpl3;
28     maintainers = with maintainers; [ ehmry ];
29   };