mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
Merge pull request #145184 from vdot0x23/submit/netdiscover-init
netdiscover: init at 0.8.1
This commit is contained in:
commit
fdd6f7cc53
@ -13244,4 +13244,10 @@
|
||||
github = "sei40kr";
|
||||
githubId = 11665236;
|
||||
};
|
||||
vdot0x23 = {
|
||||
name = "Victor Büttner";
|
||||
email = "nix.victor@0x23.dk";
|
||||
github = "vdot0x23";
|
||||
githubId = 40716069;
|
||||
};
|
||||
}
|
||||
|
26
pkgs/tools/networking/netdiscover/default.nix
Normal file
26
pkgs/tools/networking/netdiscover/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user