Merge pull request #191772 from fabaff/dbmonster

dbmonster: init at unstable-2022-09-17
This commit is contained in:
Fabian Affolter 2022-09-20 08:16:19 +02:00 committed by GitHub
commit 263f1e2be3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 58 additions and 0 deletions

View file

@ -0,0 +1,56 @@
{ lib
, aircrack-ng
, fetchFromGitHub
, iproute2
, networkmanager
, python3
, tshark
, wirelesstools
}:
python3.pkgs.buildPythonApplication rec {
pname = "dbmonster";
version = "unstable-2022-09-17";
format = "other";
src = fetchFromGitHub {
owner = "90N45-d3v";
repo = "dBmonster";
rev = "4c79549079782a2991309120a55c8158701a9b70";
hash = "sha256-9RP3LmZF7P2c0+Jt/kMSVPb4cBtyH6P3FZ5UrQpBP0I=";
};
propagatedBuildInputs = [
aircrack-ng
iproute2
networkmanager
tshark
wirelesstools
] ++ (with python3.pkgs; [
matplotlib
]);
dontBuild = true;
installPhase = ''
runHook preInstall
install -vD dBmonster.py $out/bin/$pname.py
makeWrapper ${python3.interpreter} $out/bin/$pname \
--set PYTHONPATH "$PYTHONPATH:$out/bin/$pname" \
--add-flags "-O $out/bin/$pname.py"
runHook postInstall
'';
# Only script available
doCheck = false;
meta = with lib; {
description = "Tool to track WiFi devices by signal strength";
homepage = "https://github.com/90N45-d3v/dBmonster";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -13333,6 +13333,8 @@ with pkgs;
dbmate = callPackage ../development/tools/database/dbmate { };
dbmonster = callPackage ../tools/security/dbmonster { };
devpi-client = python3Packages.callPackage ../development/tools/devpi-client {};
devpi-server = callPackage ../development/tools/devpi-server {};