summary refs log tree commit diff
path: root/pkgs/development/tools/haskell
diff options
context:
space:
mode:
authorsarahzrf <sarahzrf@protonmail.com>2020-06-26 16:52:00 -0400
committerGitHub <noreply@github.com>2020-06-26 16:52:00 -0400
commit2ef3794f2ccde4673d39a974c90dea36cee1be39 (patch)
treeba206638bd0f2da9efe7f7cf7641cb71c2aab6bb /pkgs/development/tools/haskell
parent4b129d197ffad8693584bcd76848611df933a2c0 (diff)
downloadnixpkgs-2ef3794f2ccde4673d39a974c90dea36cee1be39.tar
nixpkgs-2ef3794f2ccde4673d39a974c90dea36cee1be39.tar.gz
nixpkgs-2ef3794f2ccde4673d39a974c90dea36cee1be39.tar.bz2
nixpkgs-2ef3794f2ccde4673d39a974c90dea36cee1be39.tar.lz
nixpkgs-2ef3794f2ccde4673d39a974c90dea36cee1be39.tar.xz
nixpkgs-2ef3794f2ccde4673d39a974c90dea36cee1be39.tar.zst
nixpkgs-2ef3794f2ccde4673d39a974c90dea36cee1be39.zip
Fixed syntax errors in ihaskell wrapper
Diffstat (limited to 'pkgs/development/tools/haskell')
-rw-r--r--pkgs/development/tools/haskell/ihaskell/wrapper.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/haskell/ihaskell/wrapper.nix b/pkgs/development/tools/haskell/ihaskell/wrapper.nix
index 9b33d6e0670..60f8c2ecb25 100644
--- a/pkgs/development/tools/haskell/ihaskell/wrapper.nix
+++ b/pkgs/development/tools/haskell/ihaskell/wrapper.nix
@@ -9,7 +9,7 @@ let
   ihaskellSh = writeScriptBin "ihaskell-notebook" ''
     #! ${stdenv.shell}
     export GHC_PACKAGE_PATH="$(echo ${ihaskellEnv}/lib/*/package.conf.d| tr ' ' ':'):$GHC_PACKAGE_PATH"
-    export PATH="${stdenv.lib.makeBinPath ([ ihaskellEnv jupyter ])}''${PATH:+':'}$PATH
+    export PATH="${stdenv.lib.makeBinPath ([ ihaskellEnv jupyter ])}''${PATH:+:}$PATH"
     ${ihaskellEnv}/bin/ihaskell install -l $(${ihaskellEnv}/bin/ghc --print-libdir) && ${jupyter}/bin/jupyter notebook
   '';
 in