2021-05-14 10:27:13 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "ipinfo";
|
2023-09-01 02:10:52 +00:00
|
|
|
version = "3.0.1";
|
2021-05-14 10:27:13 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = "cli";
|
2023-02-07 09:16:11 +00:00
|
|
|
rev = "refs/tags/${pname}-${version}";
|
2023-09-01 02:10:52 +00:00
|
|
|
hash = "sha256-b6Rh5TJHqcdexZ4AHY+4jQsCMdn69J3MTbmgKXEaACw=";
|
2021-05-14 10:27:13 +00:00
|
|
|
};
|
|
|
|
|
2023-09-01 02:10:52 +00:00
|
|
|
vendorHash = null;
|
2021-05-14 10:27:13 +00:00
|
|
|
|
2021-06-10 18:11:15 +00:00
|
|
|
# Tests require network access
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-05-14 10:27:13 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Command Line Interface for the IPinfo API";
|
|
|
|
homepage = "https://github.com/ipinfo/cli";
|
2023-02-07 09:16:11 +00:00
|
|
|
changelog = "https://github.com/ipinfo/cli/releases/tag/ipinfo-${version}";
|
2021-05-14 10:27:13 +00:00
|
|
|
license = with licenses; [ asl20 ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|