mirror of
https://github.com/kittywitch/ida-pro-overlay.git
synced 2026-02-09 09:19:17 -08:00
Merge pull request #2 from campbellcole/main
Fix derivation breakage due to nixpkgs switch to 3.12
This commit is contained in:
commit
0b2e82fed6
1 changed files with 2 additions and 2 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
pythonForIDA = pkgs.python3.withPackages (ps: with ps; [ rpyc ]);
|
pythonForIDA = pkgs.python313.withPackages (ps: with ps; [ rpyc ]);
|
||||||
in
|
in
|
||||||
pkgs.stdenv.mkDerivation rec {
|
pkgs.stdenv.mkDerivation rec {
|
||||||
pname = "ida-pro";
|
pname = "ida-pro";
|
||||||
|
|
@ -105,7 +105,7 @@ pkgs.stdenv.mkDerivation rec {
|
||||||
done
|
done
|
||||||
|
|
||||||
# Manually patch libraries that dlopen stuff.
|
# 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
|
patchelf --add-needed libcrypto.so $out/lib/libida.so
|
||||||
|
|
||||||
# Some libraries come with the installer.
|
# Some libraries come with the installer.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue