We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87aa6db commit d5c6af3Copy full SHA for d5c6af3
package.nix
@@ -1,4 +1,5 @@
1
{
2
+ lib,
3
stdenv,
4
callPackage,
5
autoPatchelfHook,
@@ -51,6 +52,7 @@ stdenv.mkDerivation {
51
52
wayland-scanner.out
53
];
54
pythonDeps = [ python3.pkgs.pip ];
55
+ appendRunpaths = [ "${lib.getLib python3}/lib" ];
56
buildPhase = ":";
57
installPhase = ''
58
runHook preInstall
@@ -61,7 +63,6 @@ stdenv.mkDerivation {
61
63
chmod +x $out/opt/binaryninja
62
64
buildPythonPath "$pythonDeps"
65
makeWrapper $out/opt/binaryninja $out/bin/binaryninja \
- --prefix LD_LIBRARY_PATH : "${python3}/lib" \
66
--prefix PYTHONPATH : "$program_PYTHONPATH" \
67
"''${qtWrapperArgs[@]}"
68
0 commit comments