diff options
| author | Nick Cao <nickcao@nichi.co> | 2024-02-25 11:27:17 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-25 11:27:17 -0500 |
| commit | 739ca4195383eaa65c88c96686fdc4ea292e130c (patch) | |
| tree | 84e03407a9da642f9699d705c4f150657cde66b0 | |
| parent | Merge pull request #287514 from NixOS/backport-256709-to-release-23.11 (diff) | |
| parent | nbtscan: init at 1.7.2-unstable-2022-10-29 (diff) | |
| download | nixpkgs-739ca4195383eaa65c88c96686fdc4ea292e130c.tar.gz | |
Merge pull request #289557 from NixOS/backport-289549-to-release-23.11
[Backport release-23.11] nbtscan: init at 1.7.2-unstable-2022-10-29
| -rw-r--r-- | pkgs/by-name/nb/nbtscan/package.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/by-name/nb/nbtscan/package.nix b/pkgs/by-name/nb/nbtscan/package.nix new file mode 100644 index 000000000000..27194abcf5ce --- /dev/null +++ b/pkgs/by-name/nb/nbtscan/package.nix @@ -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; + }; +} |
