mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
mmdbctl: init at 1.4.6 (#352043)
This commit is contained in:
commit
7b5bc03968
55
pkgs/by-name/mm/mmdbctl/package.nix
Normal file
55
pkgs/by-name/mm/mmdbctl/package.nix
Normal file
@ -0,0 +1,55 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
installShellFiles,
|
||||
stdenv,
|
||||
runCommand,
|
||||
mmdbctl,
|
||||
dbip-country-lite,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "mmdbctl";
|
||||
version = "1.4.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ipinfo";
|
||||
repo = "mmdbctl";
|
||||
rev = "refs/tags/mmdbctl-${version}";
|
||||
hash = "sha256-6hJ9V8fHs84Lq48l3mB9nZka4rLneyxD4HMhWQYZ0cI=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-5vd39j/gpRRkUccctKGU8+QL0vANm2FMyw6jTtoqJmw=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
||||
installShellCompletion --cmd mmdbctl \
|
||||
--bash <($out/bin/mmdbctl completion bash) \
|
||||
--fish <($out/bin/mmdbctl completion fish) \
|
||||
--zsh <($out/bin/mmdbctl completion zsh)
|
||||
'';
|
||||
|
||||
passthru.tests = {
|
||||
simple = runCommand "${pname}-test" { } ''
|
||||
${lib.getExe mmdbctl} verify ${dbip-country-lite}/share/dbip/dbip-country-lite.mmdb | grep valid
|
||||
${lib.getExe mmdbctl} metadata ${dbip-country-lite}/share/dbip/dbip-country-lite.mmdb | grep DBIP-Country-Lite
|
||||
touch $out
|
||||
'';
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "MMDB file management CLI supporting various operations on MMDB database files";
|
||||
homepage = "https://github.com/ipinfo/mmdbctl";
|
||||
changelog = "https://github.com/ipinfo/mmdbctl/blob/${src.rev}/CHANGELOG.md";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ moraxyc ];
|
||||
mainProgram = "mmdbctl";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user