sx-go: init at 0.4.0

launchpad/nixpkgs/master
Fabian Affolter 3 years ago
parent e1fb0c6afb
commit 094fbf0626
  1. 35
      pkgs/tools/security/sx-go/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,35 @@
{ lib
, buildGoModule
, fetchFromGitHub
, libpcap
}:
buildGoModule rec {
pname = "sx-go";
version = "0.4.0";
src = fetchFromGitHub {
owner = "v-byte-cpu";
repo = "sx";
rev = "v${version}";
sha256 = "0djpwy40wj5asky8a16i7a117816p8g94p5y0wkl74jp07cybmrl";
};
vendorSha256 = "0n1h9jch0zfafli8djjr6wkgfxxpnh4q873d5mr1xg8a25qhlifr";
buildInputs = [
libpcap
];
postFixup = ''
# Rename binary to avoid conflict with sx
mv $out/bin/sx $out/bin/${pname}
'';
meta = with lib; {
description = "Command-line network scanner";
homepage = "https://github.com/v-byte-cpu/sx";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

@ -891,6 +891,8 @@ with pkgs;
redfang = callPackage ../tools/networking/redfang { };
sx-go = callPackage ../tools/security/sx-go { };
tfk8s = callPackage ../tools/misc/tfk8s { };
tnat64 = callPackage ../tools/networking/tnat64 { };

Loading…
Cancel
Save