-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack.yaml
More file actions
31 lines (24 loc) · 797 Bytes
/
stack.yaml
File metadata and controls
31 lines (24 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
## This resolver should correspond to our nixpkgs version (at least baseline):
resolver: lts-24.25
## Our local packages:
packages:
- .
## Use the GHC provided by our Docker build image; never download another one:
system-ghc: true
install-ghc: false
## Allow running as a different user inside Docker containers:
allow-different-user: true
## Set the output path for our compiled binaries (stack install):
local-bin-path: /tmp
## Configure Cabal to build static executables (no shared/dynamic):
configure-options:
"$locals":
- --disable-shared
- --disable-executable-dynamic
- --enable-executable-static
## Make smaller libs without any profiling:
build:
library-profiling: false
library-stripping: true
## Extra dependencies pinned to specific commits:
extra-deps: []