3
0
Fork 0
forked from mirrors/nixpkgs

Disable jupyter kernel installation on darwin

This commit is contained in:
Tom McLaughlin 2023-05-09 04:00:43 -06:00
parent 616c81c641
commit 10926ac119

View file

@ -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
'';