Merge pull request #259691 from cyounkins/cidr-merger

cidr-merger: init at 1.1.3
This commit is contained in:
Nick Cao 2023-10-23 08:35:39 -04:00 committed by GitHub
commit 1faecef2e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "cidr-merger";
version = "1.1.3";
src = fetchFromGitHub {
owner = "zhanhb";
repo = "cidr-merger";
rev = "v${version}";
sha256 = "sha256-Kb+89VP7JhBrTE4MM3H/dqoIBgDLnVhKqkgHdymYCgk=";
};
vendorHash = "sha256-cPri384AX/FdfNtzt3xj4bF+/izSa4sZuAohK0R/7H4=";
meta = with lib; {
description = "A simple command line tool to merge ip/ip cidr/ip range, supports IPv4/IPv6";
homepage = "https://github.com/zhanhb/cidr-merger";
license = licenses.mit;
maintainers = with maintainers; [ cyounkins ];
};
}