udpx: init at 1.0.7

This commit is contained in:
Fabian Affolter 2023-04-23 00:36:52 +02:00
parent fe2ecaf706
commit 00ee240c5e
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "udpx";
version = "1.0.7";
src = fetchFromGitHub {
owner = "nullt3r";
repo = "udpx";
rev = "refs/tags/v${version}";
hash = "sha256-IRnGi3TmCyxmJKAd8ZVRoSHDao+3Xt4F5QfHvNahvGo=";
};
vendorHash = null;
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "Single-packet UDP scanner";
homepage = "https://github.com/nullt3r/udpx";
changelog = "https://github.com/nullt3r/udpx/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -13125,6 +13125,8 @@ with pkgs;
udptunnel = callPackage ../tools/networking/udptunnel { };
udpx = callPackage ../tools/security/udpx { };
uftrace = callPackage ../development/tools/uftrace { };
uget = callPackage ../tools/networking/uget { };