@@ -17,8 +17,8 @@ available in snapshots to ensure reproducibility.
17
17
snapshot specification.
18
18
19
19
~~~ yaml
20
- resolver : lts-20.23 # Inherits GHC version and package set
21
- compiler : ghc-9.6.1 # Overwrites GHC version in the resolver, optional
20
+ resolver : lts-20.26 # Inherits GHC version and package set
21
+ compiler : ghc-9.6.2 # Overwrites GHC version in the resolver, optional
22
22
23
23
# Additional packages, follows extra-deps syntax
24
24
packages :
@@ -61,35 +61,35 @@ custom snapshot, due to Stack sharing snapshot packages whenever possible.
61
61
62
62
# ## Overriding the compiler
63
63
64
- The following snapshot specification will be identical to `lts-20.23 `, but instead
65
- use `ghc-9.2.6 ` instead of `ghc-9.2.7 ` :
64
+ The following snapshot specification will be identical to `lts-20.26 `, but
65
+ instead use `ghc-9.2.7 ` instead of `ghc-9.2.8 ` :
66
66
67
67
~~~yaml
68
- resolver : lts-20.23
69
- compiler : ghc-9.2.6
68
+ resolver : lts-20.26
69
+ compiler : ghc-9.2.7
70
70
~~~
71
71
72
72
# ## Dropping packages
73
73
74
- The following snapshot specification will be identical to `lts-20.23 `, but without
75
- the `text` package in our snapshot. Removing this package will cause all the
76
- packages that depend on `text` to be unbuildable, but they will still be present
77
- in the snapshot.
74
+ The following snapshot specification will be identical to `lts-20.26 `, but
75
+ without the `text` package in our snapshot. Removing this package will cause all
76
+ the packages that depend on `text` to be unbuildable, but they will still be
77
+ present in the snapshot.
78
78
79
79
~~~yaml
80
- resolver : lts-20.23
80
+ resolver : lts-20.26
81
81
drop-packages :
82
82
- text
83
83
~~~
84
84
85
85
# ## Hiding packages
86
86
87
- The following snapshot specification will be identical to `lts-20.23 `, but the
87
+ The following snapshot specification will be identical to `lts-20.26 `, but the
88
88
` text` package will be hidden when registering. This will affect, for example,
89
89
the import parser in the script command.
90
90
91
91
~~~yaml
92
- resolver : lts-20.23
92
+ resolver : lts-20.26
93
93
hidden :
94
94
- text
95
95
~~~
@@ -99,11 +99,11 @@ hidden:
99
99
In order to specify GHC options for a package, you use the same syntax as the
100
100
[ghc-options](yaml_configuration.md#ghc-options) key for build configuration.
101
101
102
- The following snapshot specification will be identical to `lts-20.23 `, but
102
+ The following snapshot specification will be identical to `lts-20.26 `, but
103
103
provides `-O1` as a ghc-option for `text` :
104
104
105
105
~~~yaml
106
- resolver : lts-20.23
106
+ resolver : lts-20.26
107
107
packages :
108
108
- text-1.2.5.0
109
109
ghc-options :
@@ -122,11 +122,11 @@ packages in the `packages` list, rather than all packages in the snapshot.
122
122
123
123
In order to specify Cabal flags for a package, you use the same syntax as the
124
124
[flags](yaml_configuration.md#flags) key for build configuration. The
125
- following snapshot specification will be identical to `lts-20.23 `, but
125
+ following snapshot specification will be identical to `lts-20.26 `, but
126
126
it enables the `developer` Cabal flag :
127
127
128
128
~~~yaml
129
- resolver : lts-20.23
129
+ resolver : lts-20.26
130
130
packages :
131
131
- text-1.2.5.0
132
132
flags :
0 commit comments