mirror of
https://github.com/kittywitch/ida-pro-overlay.git
synced 2026-02-09 09:19:17 -08:00
fix build failure after nixpkgs switched to 3.13 as default python3, pin python version to avoid problem in the future
This commit is contained in:
parent
3382a4aa39
commit
42ed61df4a
1 changed files with 2 additions and 2 deletions
|
|
@ -5,7 +5,7 @@
|
|||
...
|
||||
}:
|
||||
let
|
||||
pythonForIDA = pkgs.python3.withPackages (ps: with ps; [ rpyc ]);
|
||||
pythonForIDA = pkgs.python313.withPackages (ps: with ps; [ rpyc ]);
|
||||
in
|
||||
pkgs.stdenv.mkDerivation rec {
|
||||
pname = "ida-pro";
|
||||
|
|
@ -105,7 +105,7 @@ pkgs.stdenv.mkDerivation rec {
|
|||
done
|
||||
|
||||
# Manually patch libraries that dlopen stuff.
|
||||
patchelf --add-needed libpython3.12.so $out/lib/libida.so
|
||||
patchelf --add-needed libpython3.13.so $out/lib/libida.so
|
||||
patchelf --add-needed libcrypto.so $out/lib/libida.so
|
||||
|
||||
# Some libraries come with the installer.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue