Commit 8d022fa4 authored by Vaibhav Sagar's avatar Vaibhav Sagar

Put makeWrapper in buildInputs

As per https://github.com/NixOS/nixpkgs/issues/29987
parent c969b693
...@@ -82,9 +82,9 @@ let ...@@ -82,9 +82,9 @@ let
in in
pkgs.buildEnv { pkgs.buildEnv {
name = "ihaskell-with-packages"; name = "ihaskell-with-packages";
buildInputs = [ pkgs.makeWrapper ];
paths = [ ihaskellEnv jupyter ]; paths = [ ihaskellEnv jupyter ];
postBuild = '' postBuild = ''
. "${pkgs.makeWrapper}/nix-support/setup-hook"
ln -s ${ihaskellSh}/bin/ihaskell-notebook $out/bin/ ln -s ${ihaskellSh}/bin/ihaskell-notebook $out/bin/
for prg in $out/bin"/"*;do for prg in $out/bin"/"*;do
if [[ -f $prg && -x $prg ]]; then if [[ -f $prg && -x $prg ]]; then
......
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