lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ihaskell: Do not unset $PATH in the wrapper

+1 -1
+1 -1
pkgs/development/tools/haskell/ihaskell/wrapper.nix
··· 9 9 ihaskellSh = writeScriptBin "ihaskell-notebook" '' 10 10 #! ${stdenv.shell} 11 11 export GHC_PACKAGE_PATH="$(echo ${ihaskellEnv}/lib/*/package.conf.d| tr ' ' ':'):$GHC_PACKAGE_PATH" 12 - export PATH="${stdenv.lib.makeBinPath ([ ihaskellEnv jupyter ])}" 12 + export PATH="${stdenv.lib.makeBinPath ([ ihaskellEnv jupyter ])}\${PATH:+':'}$PATH" 13 13 ${ihaskellEnv}/bin/ihaskell install -l $(${ihaskellEnv}/bin/ghc --print-libdir) && ${jupyter}/bin/jupyter notebook 14 14 ''; 15 15 in