3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/system/hostctl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.1 KiB
Nix
Raw Normal View History

2022-03-18 09:19:33 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
2020-10-08 21:02:07 +01:00
buildGoModule rec {
pname = "hostctl";
version = "1.1.3";
2020-10-08 21:02:07 +01:00
src = fetchFromGitHub {
owner = "guumaster";
repo = pname;
rev = "v${version}";
hash = "sha256-3CfUU74e79eilu7WP+EeoGlXUYnxmRpjb8RaH/XXjxo=";
2020-10-08 21:02:07 +01:00
};
vendorSha256 = "sha256-3UM9w3o3qSlUvgg0k87aODJXqx1ryFvxHs6hlovBILY=";
2020-10-08 21:02:07 +01:00
2022-03-18 09:19:33 +00:00
nativeBuildInputs = [
installShellFiles
];
ldflags = [
"-s"
"-w"
"-X github.com/guumaster/hostctl/cmd/hostctl/actions.version=${version}"
];
2020-10-08 21:02:07 +01:00
postInstall = ''
installShellCompletion --cmd hostctl \
--bash <($out/bin/hostctl completion bash) \
--zsh <($out/bin/hostctl completion zsh)
'';
meta = with lib; {
2022-03-18 09:19:33 +00:00
description = "CLI tool to manage the /etc/hosts file";
2020-10-08 21:02:07 +01:00
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.
'';
homepage = "https://guumaster.github.io/hostctl/";
license = licenses.mit;
maintainers = with maintainers; [ blaggacao ];
};
}