Merge pull request #25254 from nh2/generic-stack-builder-no-stack-setup-lts-8.3

generic Haskell builder: Don't call `stack setup`.
This commit is contained in:
Peter Simons 2017-04-27 10:44:56 +02:00 committed by GitHub
commit cd4d91eb11

View file

@ -37,7 +37,6 @@ stdenv.mkDerivation (args // {
configurePhase = args.configurePhase or ''
export STACK_ROOT=$NIX_BUILD_TOP/.stack
stack setup
'';
buildPhase = args.buildPhase or "stack build";