mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 21:33:07 +00:00
0cf9777754
nali: 0.8.0 -> 0.8.1
37 lines
1021 B
Nix
37 lines
1021 B
Nix
{ lib, fetchFromGitHub, buildGoModule, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "nali";
|
|
version = "0.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zu1k";
|
|
repo = "nali";
|
|
rev = "v${version}";
|
|
hash = "sha256-5AI8TAKYFqjgLVKob9imrf7yVmXmAPq/zHh1bDfC5r0=";
|
|
};
|
|
|
|
vendorHash = "sha256-wIp/ShUddz+RIcsEuKWUfxsV/wNB2X1jZtIltBZ0ROM=";
|
|
subPackages = [ "." ];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
CGO_ENABLED = 0;
|
|
ldflags = [ "-s" "-w" "-X github.com/zu1k/nali/internal/constant.Version=${version}" ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd nali \
|
|
--bash <($out/bin/nali completion bash) \
|
|
--fish <($out/bin/nali completion fish) \
|
|
--zsh <($out/bin/nali completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "An offline tool for querying IP geographic information and CDN provider";
|
|
homepage = "https://github.com/zu1k/nali";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ diffumist xyenon ];
|
|
mainProgram = "nali";
|
|
};
|
|
}
|