diff options
author | Andrew Cady <d@jerkface.net> | 2016-02-22 12:09:56 -0500 |
---|---|---|
committer | Andrew Cady <d@jerkface.net> | 2016-02-22 12:09:56 -0500 |
commit | 7f505a43b02dd98033a2e27dc040c3e7c1b20eaa (patch) | |
tree | 024335b554d4f137f60eb68deaeb99d017a3ff3e /stack.yaml | |
parent | 95da11f0c12895ee65808dfb772b323a682bdbad (diff) |
Compiles with latest stackage lts
However, it can't possibly work, because of this:
XMPPServer.hs:
> renderBuilderFlush = undefined
The (real) definition of that function will have to be provided by a
forked version of xml-conduit which is not included in this commit.
Diffstat (limited to 'stack.yaml')
-rw-r--r-- | stack.yaml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/stack.yaml b/stack.yaml new file mode 100644 index 00000000..e2280624 --- /dev/null +++ b/stack.yaml | |||
@@ -0,0 +1,35 @@ | |||
1 | # This file was automatically generated by stack init | ||
2 | # For more information, see: http://docs.haskellstack.org/en/stable/yaml_configuration.html | ||
3 | |||
4 | # Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2) | ||
5 | resolver: lts-5.4 | ||
6 | |||
7 | # Local packages, usually specified by relative directory name | ||
8 | packages: | ||
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] | ||
33 | |||
34 | # Allow a newer minor version of GHC than the snapshot specifies | ||
35 | # compiler-check: newer-minor | ||