haskell.buildStackProject: use setup hook
This makes things easier and hopefully fixes the arg too long issue. Fixes #49206.
This commit is contained in:
11
pkgs/development/haskell-modules/stack-hook.sh
Normal file
11
pkgs/development/haskell-modules/stack-hook.sh
Normal file
@@ -0,0 +1,11 @@
|
||||
addStackArgs () {
|
||||
if [ -d "$1/lib" ] && [[ "$STACK_IN_NIX_EXTRA_ARGS" != *"--extra-lib-dirs=$1/lib"* ]]; then
|
||||
STACK_IN_NIX_EXTRA_ARGS+=" --extra-lib-dirs=$1/lib"
|
||||
fi
|
||||
|
||||
if [ -d "$1/include" ] && [[ "$STACK_IN_NIX_EXTRA_ARGS" != *"--extra-include-dirs=$1/include"* ]]; then
|
||||
STACK_IN_NIX_EXTRA_ARGS+=" --extra-include-dirs=$1/include"
|
||||
fi
|
||||
}
|
||||
|
||||
addEnvHooks "$hostOffset" addStackArgs
|
||||
Reference in New Issue
Block a user