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