hostctl: update description

main
Fabian Affolter 2 years ago committed by GitHub
parent 8d1664a7a8
commit 353177b94b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 21
      pkgs/tools/system/hostctl/default.nix

@ -1,4 +1,8 @@
{ buildGoModule, fetchFromGitHub, lib, installShellFiles }:
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
buildGoModule rec {
pname = "hostctl";
@ -8,14 +12,21 @@ buildGoModule rec {
owner = "guumaster";
repo = pname;
rev = "v${version}";
sha256 = "sha256-rvUm31WRSLusM9VGsIHKGTH6Vs8LWPtzPDs3azA710w=";
hash = "sha256-rvUm31WRSLusM9VGsIHKGTH6Vs8LWPtzPDs3azA710w=";
};
vendorSha256 = "sha256-rGDWrivIdl5FTu/kNR8nAfE2+1hE4cm3uDg7oBobE9M=";
ldflags = [ "-s" "-w" "-X github.com/guumaster/hostctl/cmd/hostctl/actions.version=${version}" ];
nativeBuildInputs = [
installShellFiles
];
ldflags = [
"-s"
"-w"
"-X github.com/guumaster/hostctl/cmd/hostctl/actions.version=${version}"
];
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installShellCompletion --cmd hostctl \
--bash <($out/bin/hostctl completion bash) \
@ -23,7 +34,7 @@ buildGoModule rec {
'';
meta = with lib; {
description = "Your dev tool to manage /etc/hosts like a pro!";
description = "CLI tool to manage the /etc/hosts file";
longDescription = ''
This tool gives you more control over the use of your hosts file.
You can have multiple profiles and switch them on/off as you need.

Loading…
Cancel
Save