about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/nb/nbtscan/package.nix
blob: 27194abcf5ce8c84c78af70a6f5fc69a592b94a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
  };
}