mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
28 lines
678 B
Nix
28 lines
678 B
Nix
{ 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;
|
|
};
|
|
})
|