biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / ipinfo / default.nix
blob500b40120fc544fd23e16d1fcc91275f686a6802
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "ipinfo";
8   version = "3.3.1";
10   src = fetchFromGitHub {
11     owner = pname;
12     repo = "cli";
13     rev = "refs/tags/${pname}-${version}";
14     hash = "sha256-sdQdCP2NotrdeqYrSd9c6sExFeuX54I4fxJfEyULPuk=";
15   };
17   vendorHash = null;
19   # Tests require network access
20   doCheck = false;
22   meta = with lib; {
23     description = "Command Line Interface for the IPinfo API";
24     homepage = "https://github.com/ipinfo/cli";
25     changelog = "https://github.com/ipinfo/cli/releases/tag/ipinfo-${version}";
26     license = with licenses; [ asl20 ];
27     maintainers = with maintainers; [ fab ];
28   };