diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-06-04 19:24:32 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-06-04 19:27:54 -0400 |
| commit | 68454bc5eefa7f28d8146654c048de5053193767 (patch) | |
| tree | 2a26197b4963c9ef26345955f8064a2355ef9b4e | |
| parent | f131876d52486efdf5091875d08a6579c5374a64 (diff) | |
| download | home-68454bc5eefa7f28d8146654c048de5053193767.tar.gz | |
packages/binaryninja: add deps for SENinja
| -rw-r--r-- | packages/binaryninja.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/binaryninja.nix b/packages/binaryninja.nix index 114e0f0..aaf2401 100644 --- a/packages/binaryninja.nix +++ b/packages/binaryninja.nix @@ -9,8 +9,7 @@ pkgs.buildFHSEnv { libGL libxml2 libxkbcommon - python311 - (python311.withPackages(ps: with ps; [ pypresence])) + (python312.withPackages(ps: with ps; [ pypresence z3-solver ])) xorg.libX11 xorg.libxcb xorg.xcbutilimage @@ -23,7 +22,7 @@ pkgs.buildFHSEnv { ]; runScript = pkgs.writeScript "binaryninja.sh" '' set -e - exec "~/.opt/binaryninja/binaryninja" # ! change this path if your installation is located somewhere else. + exec "~/.local/opt/binaryninja/binaryninja" # ! change this path if your installation is located somewhere else. ''; meta = { description = "binaryninja"; |