e6319aa686
- I upgraded the actor system (Control.Concurrent.Actor) to support typed per-actor methods with type-level names, parameter lists and return values - For extensible sum types, I decided to use the 'vary' package, while extensible product still uses 'HList' (other options are to get both from 'extensible' (Sum, Prod) or from 'vinyl' (Rec, CoRed)) - Since 'vary' is new, it uses GHC2021 and thus requires GHC 9 - So I decided to make the leap into upgrading to an LTS with GHC 9 - Vervis was at LTS 18, at first I tried 19 and 20 but there were dependency version problems, in particular I couldn't solve them for the 'darcs' package even when I switched to latest LTS which is 22 - So I decided it's time to do the long-waiting task of switching to calling-darcs-process instead of using darcs as a library All of this together creates a huge commit, but 3 big things are now solved :)
81 lines
2.8 KiB
YAML
81 lines
2.8 KiB
YAML
# For more information, see:
|
|
# http://docs.haskellstack.org/en/stable/yaml_configuration.html
|
|
|
|
# Specifies the GHC version and set of packages available (e.g., lts-3.5,
|
|
# nightly-2015-09-21, ghc-7.10.2)
|
|
resolver: lts-22.32
|
|
|
|
# Local packages, usually specified by relative directory name
|
|
packages:
|
|
- .
|
|
|
|
# Packages to be pulled from upstream that are not in the resolver (e.g.,
|
|
# acme-missiles-0.3)
|
|
extra-deps:
|
|
# yesod-auth-account
|
|
- git: https://vervis.peers.community/repos/VE2Kr
|
|
commit: 0b38f114ebe3ef9b64c7670a3a8497c0857ff2cd
|
|
- git: https://codeberg.org/ForgeFed/dvara
|
|
commit: 38525e38c37d1614cbb430ab4439cbbf8f5fdfc0
|
|
- git: https://codeberg.org/ForgeFed/haskell-http-signature
|
|
commit: 0ff017f91169f1d23e78a2edf9ba2e59b227dc86
|
|
- git: https://codeberg.org/ForgeFed/haskell-http-client-signature
|
|
commit: 42b01e0b57c2dcaf78a5dc13c298ec985524d8af
|
|
- git: https://codeberg.org/ForgeFed/haskell-persistent-migration
|
|
commit: b3114d44d255e3373242c7b9c70ce6203fc0138d
|
|
- git: https://codeberg.org/ForgeFed/haskell-persistent-email-address
|
|
commit: ddf0ea55d4e7a0cdf8d57b40f0fc6841de8657af
|
|
- git: https://codeberg.org/ForgeFed/haskell-time-interval-aeson
|
|
commit: 7a9a17abb1b27b79a4b2d535f3f1f163afea071e
|
|
- git: https://codeberg.org/ForgeFed/haskell-yesod-http-signature
|
|
commit: 02536f0802120d887ae84bdaeac3e269de82fe2a
|
|
- git: https://codeberg.org/ForgeFed/haskell-yesod-mail-send
|
|
commit: ccdc3b453a46d7d3f38998478c421ddc791591ff
|
|
- git: https://github.com/TripShot/monadcryptorandom
|
|
commit: 05233de8ac31701600a512a67a45b6f3ca382687
|
|
- git: https://codeberg.org/ForgeFed/haskell-cipher-aes128
|
|
commit: 3ecd428b43ceb52e6a73e1ad8eb059d8844abbe9
|
|
- git: https://codeberg.org/ForgeFed/haskell-DRBG
|
|
commit: dedfcdd4b95b46a30afe24ba05582995299d38b4
|
|
# - git: https://notabug.org/fr33domlover/haskell-persistent
|
|
# commit: 9cc700b540a680ac1fdc9df94847a631013cb3ca
|
|
# subdirs:
|
|
# - persistent
|
|
# - persistent-postgresql
|
|
|
|
- ./lib/ssh
|
|
|
|
- HList-0.5.3.0
|
|
- SimpleAES-0.4.2
|
|
- email-validate-json-0.1.0.0
|
|
- highlighter2-0.2.5
|
|
- libravatar-0.4.0.2
|
|
- smtp-mail-0.4.0.2
|
|
- time-interval-0.1.1
|
|
- vary-0.1.0.3
|
|
|
|
# Override default flag values for local packages and extra-deps
|
|
flags:
|
|
vervis:
|
|
dev: true
|
|
|
|
# Extra package databases containing global packages
|
|
extra-package-dbs: []
|
|
|
|
# Control whether we use the GHC we find on the path
|
|
# system-ghc: true
|
|
|
|
# Require a specific version of stack, using version ranges
|
|
# require-stack-version: -any # Default
|
|
# require-stack-version: >= 1.0.0
|
|
|
|
# Override the architecture used by stack
|
|
# arch: i386
|
|
# arch: x86_64
|
|
|
|
# Extra directories used by stack for building
|
|
# extra-include-dirs: [/path/to/dir]
|
|
# extra-lib-dirs: [/path/to/dir]
|
|
|
|
# Allow a newer minor version of GHC than the snapshot specifies
|
|
# compiler-check: newer-minor
|