bombadillo: add man page

master
Daniel Nagy 2021-02-08 01:18:20 +01:00
parent 344243bb47
commit 65cd60100a
No known key found for this signature in database
GPG Key ID: 1B8E8DCB576FB671
1 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ lib, fetchgit, buildGoModule }:
{ lib, fetchgit, buildGoModule, installShellFiles }:
buildGoModule rec {
pname = "bombadillo";
@ -10,8 +10,16 @@ buildGoModule rec {
sha256 = "02w6h44sxzmk3bkdidl8xla0i9rwwpdqljnvcbydx5kyixycmg0q";
};
nativeBuildInputs = [ installShellFiles ];
vendorSha256 = "0sjjj9z1dhilhpc8pq4154czrb79z9cm044jvn75kxcjv6v5l2m5";
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/";