Commit bfeccc23 authored by Vaibhav Sagar's avatar Vaibhav Sagar

release.nix: remove ihaskellWrapperSh

parent e7b40f36
...@@ -50,11 +50,6 @@ let ...@@ -50,11 +50,6 @@ let
ihaskellEnv = haskellPackages.ghcWithPackages packages; ihaskellEnv = haskellPackages.ghcWithPackages packages;
jupyterlab = nixpkgs.python3.withPackages (ps: [ ps.jupyterlab ] ++ pythonPackages ps); jupyterlab = nixpkgs.python3.withPackages (ps: [ ps.jupyterlab ] ++ pythonPackages ps);
ihaskellWrapperSh = nixpkgs.writeShellScriptBin "ihaskell-wrapper" ''
export PATH="${nixpkgs.lib.makeBinPath ([ ihaskellEnv jupyterlab ] ++ systemPackages nixpkgs)}''${PATH:+:}$PATH"
exec ${ihaskellExe}/bin/ihaskell "$@"
'';
ihaskellGhcLib = nixpkgs.writeShellScriptBin "ihaskell" '' ihaskellGhcLib = nixpkgs.writeShellScriptBin "ihaskell" ''
${ihaskellExe}/bin/ihaskell -l $(${ihaskellEnv}/bin/ghc --print-libdir) "$@" ${ihaskellExe}/bin/ihaskell -l $(${ihaskellEnv}/bin/ghc --print-libdir) "$@"
''; '';
...@@ -110,7 +105,6 @@ nixpkgs.buildEnv { ...@@ -110,7 +105,6 @@ nixpkgs.buildEnv {
inherit ihaskellExe; inherit ihaskellExe;
inherit ihaskellEnv; inherit ihaskellEnv;
inherit jupyterlab; inherit jupyterlab;
inherit ihaskellWrapperSh;
inherit ihaskellKernelSpec; inherit ihaskellKernelSpec;
inherit ihaskellLabextension; inherit ihaskellLabextension;
inherit ihaskellDataDir; inherit ihaskellDataDir;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment