nali 0.8.0 -> 0.8.1 https://repology.org/project/nali/versions attrpath: nali Checking auto update branch... No auto update branch exists Old version 0.8.0" not present in master derivation file with contents: { 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"; }; }