mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
udpx: init at 1.0.7
This commit is contained in:
parent
fe2ecaf706
commit
00ee240c5e
31
pkgs/tools/security/udpx/default.nix
Normal file
31
pkgs/tools/security/udpx/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user