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 40e275a commit 34596dfCopy full SHA for 34596df
package.nix
@@ -91,7 +91,15 @@ stdenv.mkDerivation {
91
mkdir -p $out/opt/binaryninja
92
mkdir -p $out/share/pixmaps
93
cp -r * $out/opt/binaryninja
94
- rm $out/opt/binaryninja/*.so.*
+ find $out/opt/binaryninja \
95
+ -type f \
96
+ -name '*.so.*' \
97
+ -not -name 'libbinaryninjacore.so.*' \
98
+ -not -name 'libbinaryninjaui.so.*' \
99
+ -not -name 'liblldb.so.*' \
100
+ -not -name 'libshiboken6.abi*.so.*' \
101
+ -not -name 'libpyside6.abi*.so.*' \
102
+ -delete
103
cp ${desktopIcon} $out/share/pixmaps/binaryninja.png
104
chmod +x $out/opt/binaryninja/binaryninja
105
buildPythonPath "$pythonDeps"
0 commit comments