about summary refs log tree commit diff
path: root/pkgs/by-name
diff options
context:
space:
mode:
authorD3vil0p3r <vozaanthony@gmail.com>2024-02-17 16:00:40 +0100
committerGitHub <noreply@github.com>2024-02-17 16:00:40 +0100
commitc5da04da50a60c21889f7d1fc348a43ce9bf1db1 (patch)
tree11c1328a671b583357915521adc0987a46065c3f /pkgs/by-name
parent2f92ed11f3fa1cb2ac2be35c0bb4b75af3731d0e (diff)
nbtscan: init at 1.7.2-unstable-2022-10-29
Diffstat (limited to 'pkgs/by-name')
-rw-r--r--pkgs/by-name/nb/nbtscan/package.nix27
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 0000000000000..27194abcf5ce8
--- /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;
+  };
+}