Merge pull request #43425 from dtzWill/fix/r2-cutter-no-wrapper

radare2-cutter: don't wrap, shouldn't be needed (and might be wrong)

authored by Will Dietz and committed by GitHub 68cd907d ee57cb3a

+2 -9
+2 -9
pkgs/development/tools/analysis/radare2-cutter/default.nix
··· 1 1 { stdenv, fetchFromGitHub 2 2 # nativeBuildInputs 3 - , qmake, pkgconfig, makeWrapper 3 + , qmake, pkgconfig 4 4 # Qt 5 5 , qtbase, qtsvg, qtwebengine 6 6 # buildInputs ··· 30 30 --replace "include(lib_radare2.pri)" "" 31 31 ''; 32 32 33 - nativeBuildInputs = [ qmake pkgconfig makeWrapper ]; 33 + nativeBuildInputs = [ qmake pkgconfig ]; 34 34 buildInputs = [ qtbase qtsvg qtwebengine radare2 python3 ]; 35 35 36 36 qmakeFlags = [ ··· 41 41 # Disable until can be looked at. 42 42 "CUTTER_ENABLE_JUPYTER=false" 43 43 ]; 44 - 45 - # Fix crash on startup in some situations 46 - postInstall = '' 47 - wrapProgram $out/bin/Cutter \ 48 - --prefix QT_PLUGIN_PATH : ${qtbase.bin}/${qtbase.qtPluginPrefix} \ 49 - --prefix LD_LIBRARY_PATH : ${qtbase.out}/lib 50 - ''; 51 44 52 45 enableParallelBuilding = true; 53 46