summaryrefslogtreecommitdiff
path: root/stack.yaml
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2016-01-20 06:27:09 -0500
committerAndrew Cady <d@jerkface.net>2016-01-20 06:28:02 -0500
commit84a16ec6d536837861d543f6ff42d042151fbe52 (patch)
tree709e0b3d6dca251e6030354f32c9158f304d7900 /stack.yaml
parent00e3068de0193564afb28759e5d8a5c6bdfc5ee5 (diff)
add stack/cabal metadata
Diffstat (limited to 'stack.yaml')
-rw-r--r--stack.yaml32
1 files changed, 32 insertions, 0 deletions
diff --git a/stack.yaml b/stack.yaml
new file mode 100644
index 0000000..2639f7b
--- /dev/null
+++ b/stack.yaml
@@ -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)
4resolver: lts-4.1
5
6# Local packages, usually specified by relative directory name
7packages:
8- '.'
9
10# Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3)
11extra-deps: []
12
13# Override default flag values for local packages and extra-deps
14flags: {}
15
16# Extra package databases containing global packages
17extra-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]