ipinfo: 2.10.0 -> 2.10.1

This commit is contained in:
Fabian Affolter 2023-02-07 10:16:11 +01:00
parent e63fe19135
commit e299ba0a42

View file

@ -5,13 +5,13 @@
buildGoModule rec {
pname = "ipinfo";
version = "2.10.0";
version = "2.10.1";
src = fetchFromGitHub {
owner = pname;
repo = "cli";
rev = "${pname}-${version}";
hash = "sha256-oim234254qUWITfgBfB2theMgpVnGHNmrzwE5ULM2M4=";
rev = "refs/tags/${pname}-${version}";
hash = "sha256-/CW+CmtKc96tVEh5cB6x+/Hb4WnbVi+3AZ0CEao0NE4=";
};
vendorSha256 = null;
@ -22,6 +22,7 @@ buildGoModule rec {
meta = with lib; {
description = "Command Line Interface for the IPinfo API";
homepage = "https://github.com/ipinfo/cli";
changelog = "https://github.com/ipinfo/cli/releases/tag/ipinfo-${version}";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};