diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2018-09-15 15:20:50 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2018-09-15 15:20:50 +0200 |
commit | b8821e100e0d8b02cde5392a2bb7d5f71428de87 (patch) | |
tree | b6375df34485b19845709020781411b45b490e12 /stack.yaml | |
parent | 42cd5f4a218be39b90a37d94eb5cdb6570ad2ab2 (diff) | |
download | bar-b8821e100e0d8b02cde5392a2bb7d5f71428de87.tar bar-b8821e100e0d8b02cde5392a2bb7d5f71428de87.tar.gz bar-b8821e100e0d8b02cde5392a2bb7d5f71428de87.tar.bz2 bar-b8821e100e0d8b02cde5392a2bb7d5f71428de87.tar.xz bar-b8821e100e0d8b02cde5392a2bb7d5f71428de87.zip |
Disable thermoprint via flag
Diffstat (limited to 'stack.yaml')
-rw-r--r-- | stack.yaml | 28 |
1 files changed, 18 insertions, 10 deletions
@@ -15,7 +15,7 @@ | |||
15 | # resolver: | 15 | # resolver: |
16 | # name: custom-snapshot | 16 | # name: custom-snapshot |
17 | # location: "./custom-snapshot.yaml" | 17 | # location: "./custom-snapshot.yaml" |
18 | resolver: ghc-8.2.2 | 18 | resolver: lts-11.22 |
19 | 19 | ||
20 | # User packages to be built. | 20 | # User packages to be built. |
21 | # Various formats can be used as shown in the example below. | 21 | # Various formats can be used as shown in the example below. |
@@ -36,10 +36,21 @@ resolver: ghc-8.2.2 | |||
36 | # non-dependency (i.e. a user package), and its test suites and benchmarks | 36 | # non-dependency (i.e. a user package), and its test suites and benchmarks |
37 | # will not be run. This is useful for tweaking upstream packages. | 37 | # will not be run. This is useful for tweaking upstream packages. |
38 | packages: | 38 | packages: |
39 | - '.' | 39 | - '.' |
40 | - location: ../thermoprint/client | ||
41 | extra-dep: true | ||
42 | - location: ../thermoprint/spec | ||
43 | extra-dep: true | ||
44 | - location: | ||
45 | git: https://github.com/pngwjpgh/encoding.git | ||
46 | commit: f07769687b5cab12bbcab55eab51d629d54c2023 | ||
47 | extra-dep: true | ||
48 | |||
40 | # Dependency packages to be pulled from upstream that are not in the resolver | 49 | # Dependency packages to be pulled from upstream that are not in the resolver |
41 | # (e.g., acme-missiles-0.3) | 50 | # (e.g., acme-missiles-0.3) |
42 | extra-deps: [] | 51 | extra-deps: |
52 | - systemd-1.1.2 | ||
53 | - cabal-test-quickcheck-0.1.8.1 | ||
43 | 54 | ||
44 | # Override default flag values for local packages and extra-deps | 55 | # Override default flag values for local packages and extra-deps |
45 | flags: {} | 56 | flags: {} |
@@ -48,7 +59,7 @@ flags: {} | |||
48 | extra-package-dbs: [] | 59 | extra-package-dbs: [] |
49 | 60 | ||
50 | # Control whether we use the GHC we find on the path | 61 | # Control whether we use the GHC we find on the path |
51 | system-ghc: true | 62 | # system-ghc: true |
52 | # | 63 | # |
53 | # Require a specific version of stack, using version ranges | 64 | # Require a specific version of stack, using version ranges |
54 | # require-stack-version: -any # Default | 65 | # require-stack-version: -any # Default |
@@ -65,9 +76,6 @@ system-ghc: true | |||
65 | # Allow a newer minor version of GHC than the snapshot specifies | 76 | # Allow a newer minor version of GHC than the snapshot specifies |
66 | # compiler-check: newer-minor | 77 | # compiler-check: newer-minor |
67 | nix: | 78 | nix: |
68 | enable: false | 79 | packages: [] |
69 | packages: | 80 | pure: false |
70 | - postgresql | 81 | shell-file: ./stack.nix |
71 | - zlib | ||
72 | - haskellPackages.yesod-bin | ||
73 | - haskellPackages.stack | ||