Skip to content

Commit

Permalink
objection: init at 1.11.0-unstable-2024-09-13
Browse files Browse the repository at this point in the history
  • Loading branch information
exploitoverload committed Oct 11, 2024
1 parent 13e7885 commit 01c3e8d
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions pkgs/by-name/ob/objection/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
lib,
python3,
fetchFromGitHub,
litecli,
frida-tools,
}:

python3.pkgs.buildPythonApplication rec {
pname = "objection";
version = "1.11.0-unstable-2024-09-13";
pyproject = true;

src = fetchFromGitHub {
owner = "sensepost";
repo = "objection";
rev = "5f22e0acf7dd8fb9d3c1610629339e4fd422557d";
hash = "sha256-kLv13N6YcUYfLG6VXW2aBmkm+9bEkTQjqqGjOiRo8b8=";
};

pythonRelaxDeps = [
"semver"
];

dependencies = with python3.pkgs; [
setuptools
frida-python
prompt-toolkit
click
tabulate
semver
delegator-py
requests
flask
pygments
];

propagatedBuildInputs = [
frida-tools
litecli
];

meta = with lib; {
description = "Runtime mobile exploration toolkit, powered by Frida";
homepage = "https://github.com/sensepost/objection";
license = licenses.gpl3;
maintainers = with maintainers; [ exploitoverload ];
mainProgram = "objection";
};
}

0 comments on commit 01c3e8d

Please sign in to comment.