radare2-cutter: fix build by skipping over unhelpful helper script :)
At least it's very much not helpful for our usage.
This commit is contained in:
parent
a70f759224
commit
79d01b2e04
@ -21,9 +21,20 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
postUnpack = "export sourceRoot=$sourceRoot/src";
|
postUnpack = "export sourceRoot=$sourceRoot/src";
|
||||||
|
|
||||||
|
# Remove this "very helpful" helper file intended for discovering r2,
|
||||||
|
# as it's a doozy of harddcoded paths and unexpected behavior.
|
||||||
|
# Happily Nix has everything all set so we don't need it,
|
||||||
|
# other than as basis for the qmakeFlags set below.
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace Cutter.pro \
|
||||||
|
--replace "include(lib_radare2.pri)" ""
|
||||||
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ qmake pkgconfig ];
|
nativeBuildInputs = [ qmake pkgconfig ];
|
||||||
buildInputs = [ qtbase qtsvg qtwebengine radare2 python3 ];
|
buildInputs = [ qtbase qtsvg qtwebengine radare2 python3 ];
|
||||||
|
|
||||||
|
qmakeFlags = [ "CONFIG+=link_pkgconfig" "PKGCONFIG+=r_core" ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
Loading…
Reference in New Issue
Block a user