nbtscan: init at 1.7.2-unstable-2022-10-29

This commit is contained in:
D3vil0p3r 2024-02-17 16:00:40 +01:00 committed by GitHub
parent 2f92ed11f3
commit c5da04da50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,27 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
}:
stdenv.mkDerivation {
pname = "nbtscan";
version = "1.7.2-unstable-2022-10-29";
src = fetchFromGitHub {
owner = "resurrecting-open-source-projects";
repo = "nbtscan";
rev = "e09e22a2a322ba74bb0b3cd596933fe2e31f4b2b";
hash = "sha256-+AOubF6eZ1Zvk5n8mGl9TxEicBpS4kYThA4MrEaGjAs=";
};
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
description = "Scan networks searching for NetBIOS information";
homepage = "https://github.com/resurrecting-open-source-projects/nbtscan";
maintainers = with maintainers; [ d3vil0p3r ];
platforms = platforms.unix;
license = licenses.gpl2Plus;
};
}