Merge pull request #289549 from D3vil0p3r/patch-27

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

authored by Fabian Affolter and committed by GitHub 6b3865ac e2c8a0e9

+27
+27
pkgs/by-name/nb/nbtscan/package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + }: 6 + 7 + stdenv.mkDerivation { 8 + pname = "nbtscan"; 9 + version = "1.7.2-unstable-2022-10-29"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "resurrecting-open-source-projects"; 13 + repo = "nbtscan"; 14 + rev = "e09e22a2a322ba74bb0b3cd596933fe2e31f4b2b"; 15 + hash = "sha256-+AOubF6eZ1Zvk5n8mGl9TxEicBpS4kYThA4MrEaGjAs="; 16 + }; 17 + 18 + nativeBuildInputs = [ autoreconfHook ]; 19 + 20 + meta = with lib; { 21 + description = "Scan networks searching for NetBIOS information"; 22 + homepage = "https://github.com/resurrecting-open-source-projects/nbtscan"; 23 + maintainers = with maintainers; [ d3vil0p3r ]; 24 + platforms = platforms.unix; 25 + license = licenses.gpl2Plus; 26 + }; 27 + }