Merge pull request #122972 from fabaff/ipinfo

ipinfo: init at 1.1.2
This commit is contained in:
Sandro 2021-05-17 18:53:16 +02:00 committed by GitHub
commit db07ebef61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "ipinfo";
version = "1.1.2";
src = fetchFromGitHub {
owner = pname;
repo = "cli";
rev = "${pname}-${version}";
sha256 = "0hcv0fyrrybasxk2j1la4jmpi161apkg6d4nlsjw6548li6c6a9n";
};
vendorSha256 = null;
meta = with lib; {
description = "Command Line Interface for the IPinfo API";
homepage = "https://github.com/ipinfo/cli";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -5754,6 +5754,8 @@ in
netifd = callPackage ../tools/networking/netifd {};
ipinfo = callPackage ../tools/networking/ipinfo {};
ipscan = callPackage ../tools/security/ipscan { };
ipv6calc = callPackage ../tools/networking/ipv6calc {};