54 lines
1.5 KiB
Nix
54 lines
1.5 KiB
Nix
|
{ stdenv, fetchFromGitHub
|
||
|
# nativeBuildInputs
|
||
|
, qmake, pkgconfig
|
||
|
# Qt
|
||
|
, qtbase, qtsvg, qtwebengine
|
||
|
# buildInputs
|
||
|
, r2-for-cutter
|
||
|
, python3
|
||
|
, wrapQtAppsHook }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "radare2-cutter";
|
||
|
version = "1.10.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "radareorg";
|
||
|
repo = "cutter";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "1icv56gxpzdjqn37pk3g99vgpljdc77i6k0x601iw2885s7s01n6";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
buildInputs = [ qtbase qtsvg qtwebengine r2-for-cutter python3 wrapQtAppsHook ];
|
||
|
|
||
|
qmakeFlags = [
|
||
|
"CONFIG+=link_pkgconfig"
|
||
|
"PKGCONFIG+=r_core"
|
||
|
# Leaving this enabled doesn't break build but generates errors
|
||
|
# at runtime (to console) about being unable to load needed bits.
|
||
|
# Disable until can be looked at.
|
||
|
"CUTTER_ENABLE_JUPYTER=false"
|
||
|
];
|
||
|
|
||
|
enableParallelBuilding = true;
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "A Qt and C++ GUI for radare2 reverse engineering framework";
|
||
|
homepage = src.meta.homepage;
|
||
|
license = licenses.gpl3;
|
||
|
maintainers = with maintainers; [ mic92 dtzWill ];
|
||
|
};
|
||
|
}
|