lol

mapcidr: init at 0.0.8 (#141102)

authored by

Emile and committed by
GitHub
47e66ec1 575c56d1

+36
+34
pkgs/tools/misc/mapcidr/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "mapcidr"; 8 + version = "0.0.8"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "projectdiscovery"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + sha256 = "sha256-hlMIgSsSqvMx6Y7JnR7L9muTLWPfxDN5raJRezt99G0="; 15 + }; 16 + 17 + vendorSha256 = "sha256-zp+XaSZgSMwJK+EEiTaJKBTPiKYaYpTtArnGBmHUGzE="; 18 + 19 + modRoot = "."; 20 + subPackages = [ 21 + "cmd/mapcidr" 22 + ]; 23 + 24 + meta = with lib; { 25 + description = "Small utility program to perform multiple operations for a given subnet/CIDR ranges"; 26 + longDescription = '' 27 + mapCIDR is developed to ease load distribution for mass scanning 28 + operations, it can be used both as a library and as independent CLI tool. 29 + ''; 30 + homepage = "https://github.com/projectdiscovery/mapcidr"; 31 + license = licenses.mit; 32 + maintainers = with maintainers; [ hanemile ]; 33 + }; 34 + }
+2
pkgs/top-level/all-packages.nix
··· 3149 3149 3150 3150 lynis = callPackage ../tools/security/lynis { }; 3151 3151 3152 + mapcidr = callPackage ../tools/misc/mapcidr { }; 3153 + 3152 3154 mapproxy = callPackage ../applications/misc/mapproxy { }; 3153 3155 3154 3156 marl = callPackage ../development/libraries/marl {};