Skip to content

Instantly share code, notes, and snippets.

@qmmdb
Created September 3, 2015 11:34
Show Gist options
  • Save qmmdb/61548b843fae5beed0f8 to your computer and use it in GitHub Desktop.
Save qmmdb/61548b843fae5beed0f8 to your computer and use it in GitHub Desktop.
$ stack init --solver
Writing default config file to: /Users/dan/HelloSpock/stack.yaml
Basing on cabal files:
- /Users/dan/HelloSpock/HelloSpock.cabal
Asking cabal to calculate a build plan, please wait
Running /usr/bin/cabal --config-file=/var/folders/rh/bv6l6qs557s5_6dql410625r0000gn/T/cabal-solver74322/cabal.config install -v --dry-run --only-dependencies --reorder-goals --max-backjumps=-1 --package-db=clear --package-db=global /Users/dan/HelloSpock/ exited with ExitFailure 1
/usr/bin/alex --version
/usr/bin/gcc -dumpversion
/usr/bin/haddock --version
/usr/bin/happy --version
/usr/bin/hpc version
looking for tool hsc2hs near compiler in /usr/bin
found hsc2hs in /usr/bin/hsc2hs
/usr/bin/hsc2hs --version
/usr/bin/HsColour -version
/usr/bin/ghc -c /var/folders/rh/bv6l6qs557s5_6dql410625r0000gn/T/16807282475249.c -o /var/folders/rh/bv6l6qs557s5_6dql410625r0000gn/T/1622650073984943658.o
/usr/bin/ld -x -r /var/folders/rh/bv6l6qs557s5_6dql410625r0000gn/T/1622650073984943658.o -o /var/folders/rh/bv6l6qs557s5_6dql410625r0000gn/T/1144108930470211272.o
/usr/local/bin/pkg-config --version
Warning: cannot determine version of /usr/bin/strip :
""
/usr/bin/tar --help
Reading available packages...
Updating the index cache file...
Choosing modular solver.
Resolving dependencies...
cabal: Could not resolve dependencies:
trying: HelloSpock-0.1.0.0 (user goal)
next goal: spock (dependency of HelloSpock-0.1.0.0)
Dependency tree exhaustively searched.
name: HelloSpock
version: 0.1.0.0
synopsis: Initial project template from stack
description: Please see README.md
homepage: http://github.com/githubuser/HelloSpock#readme
license: BSD3
license-file: LICENSE
author: Example Author Name
maintainer: example@example.com
copyright: 2010 Author Here
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Lib
build-depends: base >= 4.7 && < 5
default-language: Haskell2010
executable HelloSpock-exe
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, spock >=0.9.0.1
default-language: Haskell2010
test-suite HelloSpock-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, HelloSpock
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/githubuser/HelloSpock
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment