netdiscover: 0.10 -> 0.11 (#393405)

This commit is contained in:
Nick Cao
2025-03-26 18:14:44 -04:00
committed by GitHub
+5 -3
View File
@@ -9,16 +9,17 @@
stdenv.mkDerivation rec {
pname = "netdiscover";
version = "0.10";
version = "0.11";
src = fetchFromGitHub {
owner = "netdiscover-scanner";
repo = pname;
rev = version;
sha256 = "sha256-Pd/Rf1G9z8sBZA5i+bzuzYUCiNI0Tv7Bz0lJDJCQU9I=";
tag = version;
hash = "sha256-LUM6vl6pohrTW3X9c1FaDE7j9mvMuAiDkFBKWc4KZso=";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [
libpcap
libnet
@@ -29,6 +30,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "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";
changelog = "https://github.com/netdiscover-scanner/netdiscover/releases/tag/${src.tag}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ vdot0x23 ];
platforms = platforms.unix;