summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-03-18 10:41:50 +0100
committerGitHub <noreply@github.com>2022-03-18 10:41:50 +0100
commit8b423e31ec924a4be07f6a647c7a31b7b7f8e0a9 (patch)
treeecae44bb2792b987e40cbde12583c51d672d2876
parent94000f47f3a21db3e2029d4e5a76bfe6fd24c621 (diff)
parent353177b94b7f03daabe1965efa622fae02d7c8db (diff)
Merge pull request #164577 from r-ryantm/auto-update/hostctl
hostctl: 1.1.1 -> 1.1.2
-rw-r--r--pkgs/tools/system/hostctl/default.nix23
1 files changed, 17 insertions, 6 deletions
diff --git a/pkgs/tools/system/hostctl/default.nix b/pkgs/tools/system/hostctl/default.nix
index fb3a293a80fd..bf3a25118581 100644
--- a/pkgs/tools/system/hostctl/default.nix
+++ b/pkgs/tools/system/hostctl/default.nix
@@ -1,21 +1,32 @@
-{ buildGoModule, fetchFromGitHub, lib, installShellFiles }:
+{ lib
+, buildGoModule
+, fetchFromGitHub
+, installShellFiles
+}:
buildGoModule rec {
pname = "hostctl";
- version = "1.1.1";
+ version = "1.1.2";
src = fetchFromGitHub {
owner = "guumaster";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-VjFjGvIoymGVVRiZUk/qoq/PTYoklp+Jz89zndX0e5A=";
+ 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.