You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nix-shell -A shells.ghcjs --run "cabal --project-file=cabal-ghcjs.project --builddir=dist-ghcjs new-build all"
Would the following be a shorter alternative?
nix-shell -A shells.ghcjs --run "cabal --builddir=dist-ghcjs new-build frontend"
My guess is the cabal-ghcjs.project file is passed to ensure that the backend package is not compiled. However passing the package frontend should be enough since backend is not a dependency and neither is is specified in shelld.ghcjs.
Does passing shells.ghcjs not specify that GHCJS should be used to compile? Or what is the purpose of using that shell over shells.ghc in this case?
Thanks you!
The text was updated successfully, but these errors were encountered:
Would the following be a shorter alternative?
My guess is the
cabal-ghcjs.project
file is passed to ensure that thebackend
package is not compiled. However passing the packagefrontend
should be enough sincebackend
is not a dependency and neither is is specified inshelld.ghcjs
.Does passing
shells.ghcjs
not specify that GHCJS should be used to compile? Or what is the purpose of using that shell overshells.ghc
in this case?Thanks you!
The text was updated successfully, but these errors were encountered: