about summary refs log tree commit diff
path: root/pkgs/development/interpreters/cling
diff options
context:
space:
mode:
authorTom McLaughlin <tom@codedown.io>2023-05-09 04:00:43 -0600
committerTom McLaughlin <tom@codedown.io>2023-05-09 04:00:43 -0600
commit10926ac11988efaf423b0361a2499fd7d9084c3f (patch)
tree6ae739e08fb5660bc890bcbffdda8a0b4c1d4636 /pkgs/development/interpreters/cling
parent616c81c641b1660f23536275b8b23d2e3af37f31 (diff)
Disable jupyter kernel installation on darwin
Diffstat (limited to 'pkgs/development/interpreters/cling')
-rw-r--r--pkgs/development/interpreters/cling/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/cling/default.nix b/pkgs/development/interpreters/cling/default.nix
index c236b0253c4a8..6a2fa5ea50dae 100644
--- a/pkgs/development/interpreters/cling/default.nix
+++ b/pkgs/development/interpreters/cling/default.nix
@@ -81,7 +81,7 @@ let
       # "--trace-expand"
     ];
 
-    postInstall = ''
+    postInstall = lib.optionalString (!stdenv.isDarwin) ''
       mkdir -p $out/share/Jupyter
       cp -r /build/clang/tools/cling/tools/Jupyter/kernel $out/share/Jupyter
     '';