summaryrefslogtreecommitdiff
path: root/stack.yaml
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2016-01-21 22:50:25 -0500
committerAndrew Cady <d@jerkface.net>2016-01-22 11:15:22 -0500
commit3581adc163fd0b41485d822944efe6cdd4607aed (patch)
tree41d8bfecd58e5a84547297c0e2d0263241a348b5 /stack.yaml
parent6fe3bd340f0fed8910758a32bbd86ccee135bf18 (diff)
Avoid calling "openssl req" external process
This required patching HsOpenSSL. stack.yaml has been updated to pull the patched version from github. stack.yaml was also updated to lts-4.2.
Diffstat (limited to 'stack.yaml')
-rw-r--r--stack.yaml10
1 files changed, 8 insertions, 2 deletions
diff --git a/stack.yaml b/stack.yaml
index 2639f7b..e6d5f5d 100644
--- a/stack.yaml
+++ b/stack.yaml
@@ -1,17 +1,23 @@
1# For more information, see: https://github.com/commercialhaskell/stack/blob/release/doc/yaml_configuration.md 1# For more information, see: https://github.com/commercialhaskell/stack/blob/release/doc/yaml_configuration.md
2 2
3# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.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 4resolver: lts-4.2
5 5
6# Local packages, usually specified by relative directory name 6# Local packages, usually specified by relative directory name
7packages: 7packages:
8- '.' 8- '.'
9- location:
10 git: git@github.com:afcady/HSOpenSSL.git
11 commit: 217f85d1a5ab82e3d4791bfb9f841c9303d150c6
12 extra-dep: true
9 13
10# Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3) 14# Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3)
11extra-deps: [] 15extra-deps: []
12 16
13# Override default flag values for local packages and extra-deps 17# Override default flag values for local packages and extra-deps
14flags: {} 18flags:
19 HsOpenSSL:
20 fast-bignum: false
15 21
16# Extra package databases containing global packages 22# Extra package databases containing global packages
17extra-package-dbs: [] 23extra-package-dbs: []