routersploit: remove with lib; remove rec

This commit is contained in:
thtrf 2025-07-19 23:15:57 +02:00
parent 4fca1a32a0
commit 22966e22d7

View File

@ -4,9 +4,12 @@
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "routersploit";
let
version = "3.4.7";
in
python3.pkgs.buildPythonApplication {
pname = "routersploit";
inherit version;
pyproject = true;
src = fetchFromGitHub {
@ -48,11 +51,14 @@ python3.pkgs.buildPythonApplication rec {
"tests/test_module_info.py"
];
meta = with lib; {
meta = {
description = "Exploitation Framework for Embedded Devices";
homepage = "https://github.com/threat9/routersploit";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [
fab
thtrf
];
mainProgram = "rsf";
};
}