about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-07-10 18:51:56 -0500
committerWill Dietz <w@wdtz.org>2018-07-10 18:54:43 -0500
commit1780e0e806fd91c83a889450507baeef4230c381 (patch)
tree2f3f14632ff9397a928c4244be50978065309398 /pkgs/development
parent26e1a5410a127ae3fc13e2a778d8105e6f1dec2c (diff)
downloadnixlib-1780e0e806fd91c83a889450507baeef4230c381.tar
nixlib-1780e0e806fd91c83a889450507baeef4230c381.tar.gz
nixlib-1780e0e806fd91c83a889450507baeef4230c381.tar.bz2
nixlib-1780e0e806fd91c83a889450507baeef4230c381.tar.lz
nixlib-1780e0e806fd91c83a889450507baeef4230c381.tar.xz
nixlib-1780e0e806fd91c83a889450507baeef4230c381.tar.zst
nixlib-1780e0e806fd91c83a889450507baeef4230c381.zip
cutter: disable jupyter
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/analysis/radare2-cutter/default.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/development/tools/analysis/radare2-cutter/default.nix b/pkgs/development/tools/analysis/radare2-cutter/default.nix
index 299ef7f350ac..4aec0f65783a 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 = ''