firewalk: init at 5.0
This commit is contained in:
parent
3a6cad3f8e
commit
9873a6d454
1 changed files with 27 additions and 0 deletions
27
pkgs/by-name/fi/firewalk/package.nix
Normal file
27
pkgs/by-name/fi/firewalk/package.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, libnet
|
||||
, libpcap
|
||||
, libdnet
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "firewalk";
|
||||
version = "5.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://salsa.debian.org/pkg-security-team/firewalk/-/archive/upstream/${finalAttrs.version}/firewalk-upstream-${finalAttrs.version}.tar.gz";
|
||||
hash = "sha256-f0sHzcH3faeg7epfpWXbgaHrRWaWBKMEqLdy38+svGo=";
|
||||
};
|
||||
|
||||
buildInputs = [ libnet libpcap libdnet ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Gateway ACL scanner";
|
||||
homepage = "http://packetfactory.openwall.net/projects/firewalk/";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ tochiaha ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue