From 1780e0e806fd91c83a889450507baeef4230c381 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 10 Jul 2018 18:51:56 -0500 Subject: [PATCH] cutter: disable jupyter --- .../tools/analysis/radare2-cutter/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/development/tools/analysis/radare2-cutter/default.nix b/pkgs/development/tools/analysis/radare2-cutter/default.nix index 299ef7f350a..4aec0f65783 100644 --- a/pkgs/development/tools/analysis/radare2-cutter/default.nix +++ b/pkgs/development/tools/analysis/radare2-cutter/default.nix @@ -33,7 +33,14 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ qmake pkgconfig makeWrapper ]; buildInputs = [ qtbase qtsvg qtwebengine radare2 python3 ]; - qmakeFlags = [ "CONFIG+=link_pkgconfig" "PKGCONFIG+=r_core" ]; + 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" + ]; # Fix crash on startup in some situations postInstall = ''