darcs repository web UI and hosting app. This is the main darcsden trunk, which also runs hub.darcs.net. (https://hub.darcs.net)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
| # build plan using GHC 8.10 (WIP)
resolver: lts-18.18
flags:
darcsden:
cli: true
# this uses regex-pcre-builtin, does not need pcre C lib
highlightingkate: false
# this uses pcre-light, needs pcre C lib
posthook: false
# this currently requires network <2.8, which is disruptive
ssh: false
packages:
- .
extra-deps:
# more up to date ssh KEX methods, newer GHC support, but requires old network, which is disruptive
# darcs clone https://hub.darcs.net/simon/ssh --lazy
# - ssh
# - curve25519-0.2.4
# - network-2.7.0.2
# updated to avoid ambiguous Network.BSD import with old network
# - hslogger
# - MissingH
- MissingH-1.4.3.0
- CouchDB-1.2.3
- redis-0.14.2
- ConfigFile-1.1.4
- darcs-2.16.4
- constraints-0.12
- cryptonite-0.27
- hsx2hs-0.14.1.8
- PSQueue-1.1.0.1
- sandi-0.5
- SimpleAES-0.4.2
# - base16-bytestring-0.1.1.7
# - exceptions-0.8.3
# - graphviz-2999.20.0.4
# # - random-1.1
# - random-1.2.1
# - dlist-0.8.0.8
# - template-haskell-2.13.0.0
# - text-1.2.5.0
# try harder to find a build plan, throwing bounds to the wind
# allow-newer: true
# For HsOpenSSL on mac: homebrew doesn't symlink things in
# /usr/local/include any more. Should be harmless on other platforms.
# extra-include-dirs:
# - /usr/local/opt/openssl/include
# extra-lib-dirs:
# - /usr/local/opt/openssl/lib
|