nixpkgs/pkgs/by-name/db/dbmonster/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

57 lines
1.1 KiB
Nix

{ 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 ];
};
}