Merge pull request #145184 from vdot0x23/submit/netdiscover-init

netdiscover: init at 0.8.1
This commit is contained in:
Fabian Affolter 2021-11-21 20:05:40 +01:00 committed by GitHub
commit fdd6f7cc53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 0 deletions

View file

@ -13244,4 +13244,10 @@
github = "sei40kr";
githubId = 11665236;
};
vdot0x23 = {
name = "Victor Büttner";
email = "nix.victor@0x23.dk";
github = "vdot0x23";
githubId = 40716069;
};
}

View file

@ -0,0 +1,26 @@
{ lib, stdenv, fetchFromGitHub, libpcap, libnet, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "netdiscover";
version = "0.8.1";
src = fetchFromGitHub {
owner = "netdiscover-scanner";
repo = pname;
rev = version;
sha256 = "13fp9rfr9vh756m5wck76zbcr0296ir52dahzlqdr52ha9vrswbb";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libpcap libnet ];
# Running update-oui-database.sh would probably make the build irreproducible
meta = with lib; {
description = "A network address discovering tool, developed mainly for those wireless networks without dhcp server, it also works on hub/switched networks";
homepage = "https://github.com/netdiscover-scanner/netdiscover";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ vdot0x23 ];
platforms = platforms.unix;
};
}

View file

@ -7815,6 +7815,8 @@ with pkgs;
netcat-gnu = callPackage ../tools/networking/netcat { };
netdiscover = callPackage ../tools/networking/netdiscover { };
nethogs = callPackage ../tools/networking/nethogs { };
netkittftp = callPackage ../tools/networking/netkit/tftp { };