Skip to content

Commit 5b2041b

Browse files
committed
Add stack.yaml
1 parent be9eccd commit 5b2041b

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.cabal-sandbox/
22
cabal.sandbox.config
33
dist/
4+
.stack-work/

Diff for: stack.yaml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# For more information, see: https://github.com/commercialhaskell/stack/blob/release/doc/yaml_configuration.md
2+
3+
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
4+
resolver: lts-4.0
5+
6+
# Local packages, usually specified by relative directory name
7+
packages:
8+
- '.'
9+
10+
# Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3)
11+
extra-deps: []
12+
13+
# Override default flag values for local packages and extra-deps
14+
flags: {}
15+
16+
# Extra package databases containing global packages
17+
extra-package-dbs: []
18+
19+
# Control whether we use the GHC we find on the path
20+
# system-ghc: true
21+
22+
# Require a specific version of stack, using version ranges
23+
# require-stack-version: -any # Default
24+
# require-stack-version: >= 1.0.0
25+
26+
# Override the architecture used by stack, especially useful on Windows
27+
# arch: i386
28+
# arch: x86_64
29+
30+
# Extra directories used by stack for building
31+
# extra-include-dirs: [/path/to/dir]
32+
# extra-lib-dirs: [/path/to/dir]

0 commit comments

Comments
 (0)