release.nix: remove ihaskellWrapperSh

This commit is contained in:
Vaibhav Sagar 2021-09-15 02:44:11 +10:00
parent e7b40f3661
commit bfeccc2394

View File

@ -50,11 +50,6 @@ let
ihaskellEnv = haskellPackages.ghcWithPackages packages;
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" ''
${ihaskellExe}/bin/ihaskell -l $(${ihaskellEnv}/bin/ghc --print-libdir) "$@"
'';
@ -110,7 +105,6 @@ nixpkgs.buildEnv {
inherit ihaskellExe;
inherit ihaskellEnv;
inherit jupyterlab;
inherit ihaskellWrapperSh;
inherit ihaskellKernelSpec;
inherit ihaskellLabextension;
inherit ihaskellDataDir;