biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / system / hostctl / default.nix
blob76c41d85ecdfd742d002a83fbefc326067ab0480
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , installShellFiles
5 }:
7 buildGoModule rec {
8   pname = "hostctl";
9   version = "1.1.4";
11   src = fetchFromGitHub {
12     owner = "guumaster";
13     repo = pname;
14     rev = "v${version}";
15     hash = "sha256-9BbPHqAZKw8Rpjpdd/e9ip3V0Eh06tEFt/skQ97ij4g=";
16   };
18   vendorHash = "sha256-+p1gIqklTyd/AU1q0zbQN4BwxOM910fBFmkqvbFAbZA=";
20   nativeBuildInputs = [
21     installShellFiles
22   ];
24   ldflags = [
25     "-s"
26     "-w"
27     "-X github.com/guumaster/hostctl/cmd/hostctl/actions.version=${version}"
28   ];
30   postInstall = ''
31     installShellCompletion --cmd hostctl \
32       --bash <($out/bin/hostctl completion bash) \
33       --zsh <($out/bin/hostctl completion zsh)
34   '';
36   meta = with lib; {
37     description = "CLI tool to manage the /etc/hosts file";
38     longDescription = ''
39       This tool gives you more control over the use of your hosts file.
40       You can have multiple profiles and switch them on/off as you need.
41     '';
42     homepage = "https://guumaster.github.io/hostctl/";
43     license = licenses.mit;
44     maintainers = with maintainers; [ blaggacao ];
45     mainProgram = "hostctl";
46   };