Compare commits
51 Commits
cabal-inst
...
update-ghc
| Author | SHA1 | Date | |
|---|---|---|---|
| 5771daa5f1 | |||
| 487b049ae1 | |||
| 75abeb4731 | |||
| ff8aa8a0dd | |||
|
|
2bfdba63c9 | ||
|
|
3ecc0fb399 | ||
|
|
147e54ae6c | ||
| ec519eb080 | |||
| 4f3a14ed90 | |||
| 703e930808 | |||
| 41fe6ba6f0 | |||
| 8ac41d2124 | |||
| dd975d630a | |||
| 582ffbc09f | |||
| 0471ccf394 | |||
| fbc0843e53 | |||
| cfa97b75bf | |||
| 0c2846b037 | |||
| 015db18a25 | |||
| 9ebb937b37 | |||
| 25f6f8cfad | |||
| 14d47470ca | |||
| 0bc52f0cf3 | |||
| 2b84274a65 | |||
| c63fd65f90 | |||
| a4fbe645e3 | |||
| 7e1a50cfff | |||
| cb7d0c2f75 | |||
| e54435c057 | |||
| 95c57ba3e4 | |||
| f2c6c71cf0 | |||
| 2f761fc6fd | |||
| a4bc77356f | |||
|
|
f3264e2554 | ||
|
|
54bd184feb | ||
|
|
f413a1847b | ||
| 9a02e03efa | |||
| aec5468b14 | |||
| 69cec748d2 | |||
| 7f8a37de45 | |||
| 779120126e | |||
| af900f6ff0 | |||
| 1fc03b2c69 | |||
| dea08aac35 | |||
| 80b933b01b | |||
| 82d1fda68b | |||
| 96bf980545 | |||
| b20ad626e5 | |||
| cb3428749a | |||
| 178aaaaa23 | |||
| c489e5198e |
@@ -25,7 +25,7 @@ build_task:
|
||||
script:
|
||||
- tzsetup Etc/GMT
|
||||
- adjkerntz -a
|
||||
- git clone --branch cabal-install-v3.6.2.0-p2 https://github.com/hasufell/cabal.git
|
||||
- git clone --branch cabal-install-v3.6.2.0-p1 https://github.com/hasufell/cabal.git
|
||||
- cd cabal/
|
||||
- bash .github/scripts/build.sh
|
||||
binaries_artifacts:
|
||||
|
||||
2
.github/scripts/env.sh
vendored
2
.github/scripts/env.sh
vendored
@@ -12,7 +12,7 @@ fi
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
|
||||
export BOOTSTRAP_HASKELL_NONINTERACTIVE=1
|
||||
export BOOTSTRAP_HASKELL_CABAL_VERSION="${CABAL_VER:-3.6.2.0}"
|
||||
export BOOTSTRAP_HASKELL_CABAL_VERSION="${CABAL_VER:-3.6.2.0-p2}"
|
||||
export BOOTSTRAP_HASKELL_ADJUST_CABAL_CONFIG=no
|
||||
export BOOTSTRAP_HASKELL_INSTALL_NO_STACK=yes
|
||||
export BOOTSTRAP_HASKELL_ADJUST_BASHRC=1
|
||||
|
||||
2
.github/workflows/bindists.yaml
vendored
2
.github/workflows/bindists.yaml
vendored
@@ -66,7 +66,7 @@ jobs:
|
||||
- image: fedora:27
|
||||
installCmd: dnf install -y
|
||||
toolRequirements: which findutils gcc gcc-c++ gmp gmp-devel make ncurses ncurses-compat-libs xz perl
|
||||
- image: fedora:36
|
||||
- image: fedora:37
|
||||
installCmd: dnf install -y
|
||||
toolRequirements: which gcc g++ gmp gmp-devel make ncurses ncurses-compat-libs xz perl
|
||||
- image: rockylinux:8
|
||||
|
||||
1
.github/workflows/cabal-release.yaml
vendored
1
.github/workflows/cabal-release.yaml
vendored
@@ -199,7 +199,6 @@ jobs:
|
||||
ARCH: ARM64
|
||||
DISTRO: Ubuntu
|
||||
GHC_VERSION: 9.2.8
|
||||
CABAL_VER: 3.6.2.0-p1
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
||||
13
.github/workflows/install-bindist.sh
vendored
13
.github/workflows/install-bindist.sh
vendored
@@ -14,7 +14,14 @@ ghcup --version
|
||||
which ghcup | grep foobarbaz
|
||||
|
||||
ghcup_fun() {
|
||||
ghcup -v --url-source="file:$METADATA_FILE" "$@"
|
||||
case "$(uname -s)" in
|
||||
MSYS_*|MINGW*)
|
||||
ghcup -v --url-source="file:${GITHUB_WORKSPACE//\\//}/$METADATA_FILE" "$@"
|
||||
;;
|
||||
*)
|
||||
ghcup -v --url-source="file://${GITHUB_WORKSPACE}/$METADATA_FILE" "$@"
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
case $TOOL in
|
||||
@@ -26,7 +33,6 @@ case $TOOL in
|
||||
esac
|
||||
|
||||
mkdir -p /tmp/install-bindist-ci
|
||||
cp "$METADATA_FILE" /tmp/install-bindist-ci/
|
||||
cd /tmp/install-bindist-ci
|
||||
|
||||
trap 'rm -rf -- /tmp/install-bindist-ci' EXIT
|
||||
@@ -62,7 +68,6 @@ case $TOOL in
|
||||
cd "$tmp_dir"
|
||||
cabal unpack "${test_package}"
|
||||
cd "${test_package}"
|
||||
cp "/tmp/install-bindist-ci/${METADATA_FILE}" .
|
||||
}
|
||||
|
||||
# For all HLS GHC versions and the wrapper, run 'typecheck'
|
||||
@@ -109,6 +114,8 @@ case $TOOL in
|
||||
cabal --version
|
||||
cabal update
|
||||
cabal install --lib --package-env=. clock
|
||||
# https://github.com/haskell/ghcup-hs/issues/966
|
||||
cabal install --lib --package-env=. hashable
|
||||
;;
|
||||
cabal)
|
||||
ghcup_fun install ghc --set "$(ghcup_fun list -t ghc -r -c available | tail -1 | awk '{ print $2 }')"
|
||||
|
||||
@@ -7,7 +7,7 @@ package ghcup
|
||||
source-repository-package
|
||||
type: git
|
||||
location: https://github.com/haskell/ghcup-hs.git
|
||||
tag: b1106985ec1173a0122f2781719e9bb1a85de257
|
||||
tag: 91ef2c7666d118bc6bd7d2fc2eeb7754081a9f3d
|
||||
|
||||
constraints: http-io-streams -brotli,
|
||||
any.aeson >= 2.0.1.0
|
||||
|
||||
397
ghcup-0.0.7.yaml
397
ghcup-0.0.7.yaml
@@ -2920,6 +2920,11 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.8/ghc-9.2.8-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.2.8-x86_64-apple-darwin
|
||||
dlHash: eb78361feaf4277f627cbdc4b849849d09d175d0d878d28433719b7482db27f5
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: http://distcache.FreeBSD.org/local-distfiles/arrowd/stack-bindists/ghc-9.2.8-x86_64-portbld-freebsd.tar.xz
|
||||
dlSubdir: ghc-9.2.8-x86_64-portbld-freebsd
|
||||
dlHash: 9babe91f8ec1087de053bec1f37ed71be25cf1799374c3a6c79e7e271f962d93
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.8/ghc-9.2.8-x86_64-unknown-mingw32.tar.xz
|
||||
@@ -2927,9 +2932,9 @@ ghcupDownloads:
|
||||
dlHash: f11c7270839c50fda44f98b54254ae50340bb58b04f8d81ebcbe67a2827bd511
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.8/ghc-9.2.8-x86_64-alpine3.12-linux-gmp.tar.xz
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.2.8/ghc-9.2.8-x86_64-alpine-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.8-x86_64-unknown-linux
|
||||
dlHash: 7c9e5a38af4a84a91e44ae80c187e26d67c0bf3f0f786d40c44feb7762702c80
|
||||
dlHash: 1356ac4567999f6ae32471555bbe11e807a01ee9f5d4009c1486a660adbc7c3d
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-928-32-deb9
|
||||
@@ -2943,6 +2948,11 @@ ghcupDownloads:
|
||||
unknown_versioning: *ghc-928-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-928-32-deb9
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.2.8/ghc-9.2.8-i386-alpine-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.8-i386-unknown-linux
|
||||
dlHash: 9ad3335d675f5fc4774f8fdd6301fc007b3240a0e2e257fa291bb2b404f5f9a9
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
@@ -3524,7 +3534,6 @@ ghcupDownloads:
|
||||
9.4.7:
|
||||
viTags:
|
||||
- base-4.17.2.0
|
||||
- Recommended
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.4.7/docs/users_guide/9.4.7-notes.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.7/ghc-9.4.7-src.tar.xz
|
||||
@@ -3619,15 +3628,16 @@ ghcupDownloads:
|
||||
9.4.8:
|
||||
viTags:
|
||||
- base-4.17.2.1
|
||||
- Recommended
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.4.8/docs/users_guide/9.4.8-notes.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-src.tar.xz
|
||||
dlSubdir: ghc-9.4.8
|
||||
dlHash: 06775a52b4d13ac09edc6dabc299fd11e59d8886bbcae450af367baee2684c8f
|
||||
dlHash: 0bf407eb67fe3e3c24b0f4c8dea8cb63e07f63ca0f76cf2058565143507ab85e
|
||||
viTestDL:
|
||||
dlUri: https://downloads.haskell.org/ghc/9.4.8/ghc-9.4.8-testsuite.tar.xz
|
||||
dlSubdir: ghc-9.4.8/testsuite
|
||||
dlHash: a7ce907f7e3d38bee33af5cc23c74b53fe30d600fe5fc63b409c4c5675d2a69d
|
||||
dlHash: ac45dd44b097707a2717058ab2cfff22777ec0f31bfa3f54bf60e18b2dd63c95
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
@@ -3680,6 +3690,11 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-apple-darwin
|
||||
dlHash: fd9e21c2a9a10c60e39049e9cf1519b5b6a98a5b37e7623ba17bbd6e8dfc2036
|
||||
FreeBSD:
|
||||
'( >= 13 )':
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.4.8/ghc-9.4.8-x86_64-portbld-freebsd.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-portbld-freebsd
|
||||
dlHash: 36bdf52b441c8ef5a2768295407aea5f302a00c122b70b6bb2b352a8df221ad8
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-unknown-mingw32.tar.xz
|
||||
@@ -3703,6 +3718,11 @@ ghcupDownloads:
|
||||
unknown_versioning: *ghc-948-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-948-32-deb9
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.4.8/ghc-9.4.8-i386-alpine-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-i386-unknown-linux
|
||||
dlHash: 4738a79a7d5148fc0fdfcb7c6f9eb38f9da4f0ebe2ebeb47dcc6f0efbe88b334
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
@@ -3816,7 +3836,7 @@ ghcupDownloads:
|
||||
- base-4.18.0.0
|
||||
viTestDL:
|
||||
dlHash: 8bfa74d102da570cb87fbbc3465c7f778a4e6dc76606fef80207de7e8b64114f
|
||||
dlSubdir: ghc-9.6.1
|
||||
dlSubdir: ghc-9.6.1/testsuite
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-testsuite.tar.xz
|
||||
9.6.2:
|
||||
viArch:
|
||||
@@ -3931,17 +3951,27 @@ ghcupDownloads:
|
||||
unknown_versioning: *ghc-963-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-963-32-deb9
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: f06fda5e0eebf9325b6b471b2b77ab6072c42927c151a97382973f0f7d6ba9e2
|
||||
dlSubdir: ghc-9.6.3-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.6.3/ghc-9.6.3-i386-alpine-linux.tar.xz
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: dde46118ab8388fb1066312c097123e93b1dcf6ae366e3370f88ea456382c9db
|
||||
dlSubdir: ghc-9.6.3-x86_64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.3/ghc-9.6.3-x86_64-apple-darwin.tar.xz
|
||||
FreeBSD:
|
||||
'( >= 13 )':
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.6.3/ghc-9.6.3-x86_64-portbld-freebsd.tar.xz
|
||||
dlSubdir: ghc-9.6.3-x86_64-portbld-freebsd
|
||||
dlHash: e011a1663903412f1e6b05a1f84520cfaa4a3583cdf88424db2950fc7e9d152e
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: f9acd12ab36f0b52167d34af662d56a7ec42e7651afa4919da169e761df59e74
|
||||
dlHash: b4d1540dffc1f4864a3e6a0f1cb20e258c6ea87fbc9837d1bc8a920505727299
|
||||
dlSubdir: ghc-9.6.3-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.3/ghc-9.6.3-x86_64-alpine3_12-linux-static-int_native.tar.xz
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.6.3/ghc-9.6.3-x86_64-alpine-linux.tar.xz
|
||||
Linux_CentOS:
|
||||
( >= 7 && < 8 ): &ghc-963-64-centos7
|
||||
dlHash: 30ac2ada05a14aa785e3dd07edc9bba6e94043015bb1cafd75206315766132a4
|
||||
@@ -4012,9 +4042,112 @@ ghcupDownloads:
|
||||
- base-4.18.1.0
|
||||
viTestDL:
|
||||
dlHash: b0f92579288adf2320206627248d80d2abfe0e1b9ad2a22cf8f889bbe6806448
|
||||
dlSubdir: ghc-9.6.3
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.3/ghc-9.6.3-src.tar.xz
|
||||
|
||||
dlSubdir: ghc-9.6.3/testsuite
|
||||
dlUri: https://downloads.haskell.org/ghc/9.6.3/ghc-9.6.3-testsuite.tar.xz
|
||||
9.6.4:
|
||||
viTags:
|
||||
- base-4.18.2.0
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.6.4/docs/users_guide/9.6.4-notes.html
|
||||
viSourceDL:
|
||||
dlHash: 10bf25b8b07174fdd9868b5c0c56c17c0ef1edcb6247b4b864be933651bfd4c0
|
||||
dlSubdir: ghc-9.6.4
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-src.tar.xz
|
||||
viTestDL:
|
||||
dlHash: 6e13282fbebffdbfa0a49889437444c9a90cfe5760c47969cd4245854c338d73
|
||||
dlSubdir: ghc-9.6.4/testsuite
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-testsuite.tar.xz
|
||||
viArch:
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
<10: &ghc-964-32-deb9
|
||||
dlHash: 2069bbeeca4b4beef5343393a383fcd5b2ceae33be06006c512169d21f8eb9f8
|
||||
dlSubdir: ghc-9.6.4-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-i386-deb9-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-964-32-deb9
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: b897cbd156690f4e6cc4400f6b9465d610ea228d8527f8bd501210d1b93a4eab
|
||||
dlSubdir: ghc-9.6.4-x86_64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-apple-darwin.tar.xz
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: 914605fde1f0659468c5d6df934da54bd333535b33255dd1b8a6ff7e0a7463b5
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-alpine3_12-linux.tar.xz
|
||||
Linux_CentOS:
|
||||
( >= 7 && < 8 ): &ghc-964-64-centos7
|
||||
dlHash: 96231c5abcf397996f844e7db30954199eb5b4a407e3b31d6a4ed3ffd75bad2e
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-centos7-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-64-centos7
|
||||
Linux_Debian:
|
||||
(>= 10 && < 11):
|
||||
dlHash: 59885c43902110262cda168513dc6a9cc750e3e728dffb0cdb168e44929cb014
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-deb10-linux.tar.xz
|
||||
< 10:
|
||||
dlHash: 972c1c7cbc276741ceb9e4efc58ad4727e163317d5dcbf350404b84470300271
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-deb9-linux.tar.xz
|
||||
'>= 11': &ghc-964-64-deb11
|
||||
dlHash: 9c96072c64ea022f0006cc444762f666b7fbadfdc9ac556089a4ea2448187a73
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-deb11-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-64-deb11
|
||||
Linux_Fedora:
|
||||
'>= 33':
|
||||
dlHash: 6fd5574c66ecd67024de4cd6f1b3dd5d39dbe9abe10f627271ae0e322ad40fc8
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-fedora33-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-64-centos7
|
||||
Linux_Mint:
|
||||
< 20: &ghc-964-64-ubuntu1804
|
||||
dlHash: 11510a9de88f729028e2e64b97937305b11780c92777428495851d7211aa6768
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-ubuntu18_04-linux.tar.xz
|
||||
'>= 20': &ghc-964-64-ubuntu2004
|
||||
dlHash: de1e7dc03b08e7ed0cb08c855f2791e5f8fb48ca89b2a6fdf7b53cd1df48af25
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-ubuntu20_04-linux.tar.xz
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *ghc-964-64-centos7
|
||||
Linux_Ubuntu:
|
||||
( >= 16 && < 19 ): *ghc-964-64-ubuntu1804
|
||||
unknown_versioning: *ghc-964-64-ubuntu2004
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: a2672426634c0a440500fc473517c6f11ab0c327eab5ccc0bc09b17a88778ef9
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-rocky8-linux.tar.xz
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlHash: 3d67397aa2c4c09fec05ad612453f8d906930dabb4c35c2327b82b8b07d8455a
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-mingw32
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-unknown-mingw32.tar.xz
|
||||
FreeBSD:
|
||||
'( >= 13 && < 14 )': &ghc-964-64-freebsd13
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.6.4/ghc-9.6.4-x86_64-portbld-freebsd13.tar.xz
|
||||
dlSubdir: ghc-9.6.4-x86_64-portbld-freebsd
|
||||
dlHash: c682758b4847ed1433898562fd1b805773cbbcbd8ee1ff8bd777f4da242027d1
|
||||
'>= 14':
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.6.4/ghc-9.6.4-x86_64-portbld-freebsd14.tar.xz
|
||||
dlSubdir: ghc-9.6.4-x86_64-portbld-freebsd
|
||||
dlHash: 552acaa209442f71f922b0a4b57c6f03ec4b8dc5cb35b6231917413c9beb46bf
|
||||
unknown_versioning: *ghc-964-64-freebsd13
|
||||
A_ARM64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: 25affc9ceb6f2032706ec1b4b7ba5d14bd34df3b5223d8060f210aece25feea9
|
||||
dlSubdir: ghc-9.6.4-aarch64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-aarch64-apple-darwin.tar.xz
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: d430345a66128c858e09dd9a90e5beabc045a9a3cedf776aea3adb45d1286276
|
||||
dlSubdir: ghc-9.6.4-aarch64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-aarch64-deb10-linux.tar.xz
|
||||
9.8.1:
|
||||
viArch:
|
||||
A_32:
|
||||
@@ -4030,6 +4163,11 @@ ghcupDownloads:
|
||||
unknown_versioning: *ghc981-i386-deb10
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc981-i386-deb10
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: 4ae25a6851d0526c8e227a6815be3888f9df9c2fc4507f6537cb38cdc52049f7
|
||||
dlSubdir: ghc-9.8.1-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.8.1/ghc-9.8.1-i386-alpine-linux.tar.xz
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
@@ -4037,6 +4175,11 @@ ghcupDownloads:
|
||||
dlOutput: ghc-9.8.1-x86_64-darwin.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-apple-darwin.tar.xz
|
||||
FreeBSD:
|
||||
'( >= 13 )':
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.8.1/ghc-9.8.1-x86_64-portbld-freebsd.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-portbld-freebsd
|
||||
dlHash: cb82a34c59611f02b0ae3398a0a2101966c0ad3ac479215f699d6848f28cfa42
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: d83e28a0ec6d9a88f7d16cdb64e1110cf122a64166b03b84cb87de38f0fb5e78
|
||||
@@ -4127,9 +4270,8 @@ ghcupDownloads:
|
||||
- base-4.19.0.0
|
||||
viTestDL:
|
||||
dlHash: 2626f3bb974428cbb795c5433017e18088f0d8de8a66d5a23ff4776847a5bec3
|
||||
dlOutput: ghc-9.8.1-testsuite.tar.xz
|
||||
dlSubdir: ghc-9.8.1
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-src.tar.xz
|
||||
dlSubdir: ghc-9.8.1/testsuite
|
||||
dlUri: https://downloads.haskell.org/ghc/9.8.1/ghc-9.8.1-testsuite.tar.xz
|
||||
|
||||
Cabal:
|
||||
2.4.1.0:
|
||||
@@ -4137,7 +4279,7 @@ ghcupDownloads:
|
||||
- old
|
||||
viPostInstall: &cabal-HSEC-2023-0015 |
|
||||
This release is vulnerable: https://github.com/haskell/security-advisories/blob/main/advisories/hackage/cabal-install/HSEC-2023-0015.md
|
||||
Update to 3.6.2.0-p1 or 3.10.2.0.
|
||||
Update to 3.10.2.0 or later.
|
||||
viChangeLog: https://downloads.haskell.org/~cabal/cabal-install-2.4.1.0/changelog
|
||||
viArch:
|
||||
A_64:
|
||||
@@ -4450,14 +4592,13 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.6.2.0/cabal-install-3.6.2.0-armv7-linux-deb10.tar.xz
|
||||
dlHash: 694ba7c14f8d720c6e790ab0488dbff2d8a07d9c6de97b4deeba31088f825bc2
|
||||
3.6.2.0-p1:
|
||||
viTags:
|
||||
- Recommended
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.6.2.0.md
|
||||
viPostInstall: |
|
||||
This is a distributor release to fix https://github.com/haskell/security-advisories/blob/main/advisories/hackage/cabal-install/HSEC-2023-0015.md
|
||||
The applied downstream patches can be viewed here: https://github.com/hasufell/cabal/tree/cabal-install-v3.6.2.1
|
||||
Upstream PR: https://github.com/haskell/cabal/issues/9451
|
||||
You can alternatively update to 3.10.2.0.
|
||||
You can alternatively update to 3.10.2.0 or later.
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
@@ -4507,10 +4648,6 @@ ghcupDownloads:
|
||||
unknown_versioning: &cabal-3621-64-unknown
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.6.2.1/cabal-install-3.6.2.1-x86_64-linux-unknown.tar.xz
|
||||
dlHash: 5966d7cadb0a5ddc9e3129e0e5e1af32943aa96139c208aa11634f0865427d1a
|
||||
Linux_Rocky:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.6.2.1/cabal-install-3.6.2.1-x86_64-linux-rocky8.tar.xz
|
||||
dlHash: cca053ccab20975edfb1e03c62d47589a3e0c13e1e25d011f4b5b62c25e546c1
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *cabal-3621-64-unknown
|
||||
Darwin:
|
||||
@@ -4642,7 +4779,7 @@ ghcupDownloads:
|
||||
3.10.2.0:
|
||||
viPostInstall: "cabal run is currently partially broken on Windows, please see https://github.com/haskell/cabal/issues/9334"
|
||||
viTags:
|
||||
- Latest
|
||||
- old
|
||||
viChangeLog: https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.10.2.0.md
|
||||
viArch:
|
||||
A_64:
|
||||
@@ -4695,6 +4832,7 @@ ghcupDownloads:
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-freebsd.tar.xz
|
||||
dlSubdir: cabal-install-3.10.2.0-x86_64-freebsd
|
||||
dlHash: 6dcd9d38a9f2101a0a3c3b74cacb2e41b8f7226f181780c0f872f2f1206dee37
|
||||
A_32:
|
||||
Linux_UnknownLinux:
|
||||
@@ -4723,6 +4861,107 @@ ghcupDownloads:
|
||||
unknown_versioning: *cabal-31020-arm64
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *cabal-31020-arm64
|
||||
3.10.2.1:
|
||||
viPostInstall: "cabal run is currently partially broken on Windows, please see https://github.com/haskell/cabal/issues/9334"
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.10.2.0.md
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-31021-64-unknown
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-unknown.tar.xz
|
||||
dlHash: ac565f37cd6c8952090a0f5b81a25cf2a3a0f15f89905b006e0f908f84506ad7
|
||||
Linux_Debian:
|
||||
'< 10': &cabal-31021-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-deb9.tar.xz
|
||||
dlHash: dae2be181d8cf980dadbc29d3e1b6101ae190449c280a2c2f72170625b216d08
|
||||
'(>= 10 && < 11)': &cabal-31021-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-deb10.tar.xz
|
||||
dlHash: e121eec7c04f827b59937c712efa6f7cc84bdb0c3a618c7ca381302320ff1303
|
||||
'( >= 11)': &cabal-31021-64-deb11
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-deb11.tar.xz
|
||||
dlHash: e0b1a349749632f8aeeab6a92a779d86e99715dcabdbd15289b7ed72e08c2a57
|
||||
unknown_versioning: *cabal-31021-64-deb9
|
||||
Linux_Ubuntu:
|
||||
'( >= 16 && < 19 )': &cabal-31021-64-ubuntu18
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-ubuntu18.04.tar.xz
|
||||
dlHash: 2a31fc80be11aaf57e94b7e5f45cc010acccaa090309792921210c4bf1debaf1
|
||||
'( >= 20 && < 22 )': &cabal-31021-64-ubuntu20
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-ubuntu20.04.tar.xz
|
||||
dlHash: b0d0726d8bbc4e8b586672562482c6be9c57127dfcc8b48bddc55ed32c8412cb
|
||||
'( >= 22 )': &cabal-31021-64-ubuntu22
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-ubuntu22.04.tar.xz
|
||||
dlHash: 6ad7eb87f191c6891668d7ad81eabbaef53f9cbfdb017ae6e8736882523e0d8e
|
||||
unknown_versioning: *cabal-31021-64-unknown
|
||||
Linux_Mint:
|
||||
'(>= 20 && < 21)': &cabal-31021-64-mint20
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-mint20.tar.xz
|
||||
dlHash: 9a309e1a532c67e560ce2392a753ee01e8314f87d8eb286f6f9bdfea61ffd8eb
|
||||
'>= 21': &cabal-31021-64-mint21
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-mint21.tar.xz
|
||||
dlHash: e93ea8c55cf0315598f02b6129baf0c3c66537c2e7ecd3ee4f17378ea8b9aa7f
|
||||
unknown_versioning: *cabal-31021-64-unknown
|
||||
Linux_Fedora:
|
||||
'< 33': &cabal-31021-64-fedora27
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-fedora27.tar.xz
|
||||
dlHash: 7cf6c7c5e704822360b2c85ce47db89e6cf122b020d57ed487313a9f8360b8c5
|
||||
'(>= 33 && < 37)': &cabal-31021-64-fedora33
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-fedora33.tar.xz
|
||||
dlHash: 7303ca87c745bfc6c2dca7b1438d254419eebea185a02840b7f9af6a70900e6c
|
||||
'>= 37': &cabal-31021-64-fedora37
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-fedora37.tar.xz
|
||||
dlHash: 7a439775c63c6b994101d39ba1e9a8f326aeeffe15c5c8f87ab3f70493fa929a
|
||||
unknown_versioning: *cabal-31021-64-unknown
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &cabal-31021-64-centos
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-centos7.tar.xz
|
||||
dlHash: 0d3735af6ddaa84d0822db296f5401bc5ba0189c0b171dedf23174cbde25a126
|
||||
unknown_versioning: *cabal-31021-64-unknown
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *cabal-31021-64-unknown
|
||||
Linux_Alpine:
|
||||
'( >= 3.12 && < 3.19 )': &cabal-31021-64-alpine312
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-alpine312.tar.xz
|
||||
dlHash: 6b33b06ff19e11ce9648dfeed4359cbe92d0239bdabf956ea03078fc428e5d1c
|
||||
'( >= 3.19 )': &cabal-31021-64-alpine319
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-alpine319.tar.xz
|
||||
dlHash: b91f53717c6bc6af53cf1929f71779af26932eadc394a1e72d16d033757b35a6
|
||||
unknown_versioning: *cabal-31021-64-unknown
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-apple-darwin.tar.xz
|
||||
dlHash: 38f4c0f989f10a173c3d2d32a852c70cd5c8ed24db4a0320a6841afda26f0382
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-mingw64.zip
|
||||
dlHash: cca5560db0f6f759f16eed222537f65b0cc55b854988cbb2e24902494c330654
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-portbld-freebsd.tar.xz
|
||||
dlHash: 414accf40d612307d050494fae961d2c2e77ae31e4eb303642233e296fda5170
|
||||
A_32:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-31021-32-unknown
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-i386-linux-unknown.tar.xz
|
||||
dlHash: 7303dd5cf6a13e787fe275d3f26ec8f4eb1b70b8af8fe07072ca28074c7f66e8
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *cabal-31021-32-unknown
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-aarch64-linux-deb10.tar.xz
|
||||
dlHash: a053887137bb2077b4959a3588fb20dc53c50b391f4d800f6c893ce3da6fe40a
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-aarch64-apple-darwin.tar.xz
|
||||
dlHash: e6e050a37e78d94854db666d2670a65c2ff9b9e24cb62839f0a516582e7ff773
|
||||
A_ARM:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-armv7-linux-deb10.tar.xz
|
||||
dlHash: 33a8e115714c95c0724aa3bbabc34fecd2d02868bf8a1af374fcab5868f896af
|
||||
GHCup:
|
||||
0.1.20.0:
|
||||
viTags:
|
||||
@@ -5925,9 +6164,7 @@ ghcupDownloads:
|
||||
dlSubdir: haskell-language-server-2.3.0.0
|
||||
dlHash: bb16e491117b7677742ca730b741b0d8154aa3222bbaa8578d487eda5152910a
|
||||
2.4.0.0:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
@@ -6020,6 +6257,102 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 74cfa47f961ac5607055ca2f400b471a535e7b982e910e187c7c1303b048eeaf
|
||||
2.5.0.0:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-src.tar.gz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 515bbff3eca30a5d584f9a0b1b64651f9bd0ea666888c70e31692a1c95528c36
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
'< 10': &hls-2500-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-deb9.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: ba336f29647492134509e83da0cc8c8ecfbe3d264bd2c6825a1f00344f602e53
|
||||
'(>= 10 && < 11)': &hls-2500-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-deb10.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 9503db02a03e3d50d78b42b866fb32478dedb9906d278dd1ad4432740b3d3d36
|
||||
unknown_versioning: &hls-2500-64-deb11
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-deb11.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: fe8e97dd6de79b6df1b0138ee2090d392b85cbf7df13d1efa8a3827091cfef48
|
||||
Linux_Ubuntu:
|
||||
'( >= 16 && < 19 )': &hls-2500-64-ubuntu18
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-ubuntu18.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: d43e4858ff798c147a7c12f5d92cf8ca1fa345e7da3f3c1f05acf7bd0f83ee26
|
||||
'( >= 20 && < 22 )': &hls-2500-64-ubuntu20
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-ubuntu20.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 7c1800a7af1bf5777114aa7e96cca94fdf6b34dc839a7eb3ad725e28efac0250
|
||||
unknown_versioning: &hls-2500-64-ubuntu22
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-ubuntu22.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 641888bc81570f8c66d7def5f05d64419b29d51e1d61b2470f4076555b54d5e7
|
||||
Linux_Mint:
|
||||
'< 20':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-mint19.3.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 49944981fa4b6489aace7b7c1ab71a5c8b2f650c50cd6e5dad8fb107a11f042a
|
||||
'(>= 20 && < 21)':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-mint20.2.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 4ff9d1edf6b07f6339680580d73afb2f1004189da4751fe205d0e5d6f48f83bf
|
||||
'>= 21': *hls-2500-64-ubuntu22
|
||||
Linux_Fedora:
|
||||
'< 33': &hls-2500-64-fedora27
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-fedora27.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: a1d321c098949635d5e83d85a14d472ce874884096843fbfccc74cbda9d6a162
|
||||
'>= 33': &hls-2500-64-fedora33
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-fedora33.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: f2c233ee6f788cbf337c55fcaf0902fd1e363f581979437735c90483f97c5cd7
|
||||
unknown_versioning: *hls-2500-64-fedora27
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &hls-2500-64-centos
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-centos7.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 34f643436b3e2e2a68a1d89ff1db7c3c0bde25af27de981b513aa8cdbfb5ca9e
|
||||
unknown_versioning: *hls-2500-64-centos
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *hls-2500-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-unknown.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 79bdb285910a6940ddb7961ea0ffad1e5f9101afdcc332355dc5c67b821775c9
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 189e7dadad22d330052f5257c9724f834e1373ea3213f0b12a4a1b8a9c45a62e
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-mingw64.zip
|
||||
dlHash: 15a2536e30ee0f5cd226a3f37f907f1a1121ce9ff451d1b7b738138fdb17d699
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/haskell-language-server/2.5.0.0/haskell-language-server-2.5.0.0-x86_64-freebsd.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 17662583522bd48a5e1f580cb6d7abc6d77c871e274fda77c1216131be39546b
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-aarch64-linux-ubuntu20.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 47b5daf644cbfafc097470cdde7add6060f9fd27e0d4b746ccd11f8d23524c16
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 2e5083ebf7fc9dd3c5aa31059f9336bec4407fffb21b93a20decb49e9cf880a4
|
||||
Stack:
|
||||
2.5.1:
|
||||
viTags:
|
||||
@@ -6280,8 +6613,7 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/ghcup/unofficial-bindists/stack/2.9.3/stack-2.9.3-osx-aarch64.tar.gz
|
||||
dlHash: a56d2cd37611eccf00ab8df38c3718923cf5677f3aeacd250394e79b676dcb98
|
||||
2.11.1:
|
||||
viTags:
|
||||
- Recommended
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v2111---2023-05-18
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
@@ -6326,6 +6658,7 @@ ghcupDownloads:
|
||||
2.13.1:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v2131---2023-09-29
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
@@ -6348,10 +6681,10 @@ ghcupDownloads:
|
||||
dlHash: 728be2371e257c6960341167192fa704ff1f92ab61657dd4781710a257fae7c1
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
# FreeBSD:
|
||||
# unknown_versioning:
|
||||
# dlUri: https://downloads.haskell.org/ghcup/unofficial-bindists/stack/2.13.1/stack-2.13.1-freebsd-x86_64.tar.xz
|
||||
# dlHash: <replace_me>
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/stack/2.13.1/stack-2.13.1-freebsd-x86_64.tar.xz
|
||||
dlHash: 3a1a026d747d8f4858fc83080143acc10dbd7a40a766848bebeb401fde5afd4c
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *stack-2131-64
|
||||
A_ARM64:
|
||||
|
||||
Binary file not shown.
405
ghcup-0.0.8.yaml
405
ghcup-0.0.8.yaml
@@ -2920,6 +2920,11 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.8/ghc-9.2.8-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.2.8-x86_64-apple-darwin
|
||||
dlHash: eb78361feaf4277f627cbdc4b849849d09d175d0d878d28433719b7482db27f5
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: http://distcache.FreeBSD.org/local-distfiles/arrowd/stack-bindists/ghc-9.2.8-x86_64-portbld-freebsd.tar.xz
|
||||
dlSubdir: ghc-9.2.8-x86_64-portbld-freebsd
|
||||
dlHash: 9babe91f8ec1087de053bec1f37ed71be25cf1799374c3a6c79e7e271f962d93
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.8/ghc-9.2.8-x86_64-unknown-mingw32.tar.xz
|
||||
@@ -2927,9 +2932,9 @@ ghcupDownloads:
|
||||
dlHash: f11c7270839c50fda44f98b54254ae50340bb58b04f8d81ebcbe67a2827bd511
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.8/ghc-9.2.8-x86_64-alpine3.12-linux-gmp.tar.xz
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.2.8/ghc-9.2.8-x86_64-alpine-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.8-x86_64-unknown-linux
|
||||
dlHash: 7c9e5a38af4a84a91e44ae80c187e26d67c0bf3f0f786d40c44feb7762702c80
|
||||
dlHash: 1356ac4567999f6ae32471555bbe11e807a01ee9f5d4009c1486a660adbc7c3d
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-928-32-deb9
|
||||
@@ -2943,6 +2948,11 @@ ghcupDownloads:
|
||||
unknown_versioning: *ghc-928-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-928-32-deb9
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.2.8/ghc-9.2.8-i386-alpine-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.8-i386-unknown-linux
|
||||
dlHash: 9ad3335d675f5fc4774f8fdd6301fc007b3240a0e2e257fa291bb2b404f5f9a9
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
@@ -3524,7 +3534,6 @@ ghcupDownloads:
|
||||
9.4.7:
|
||||
viTags:
|
||||
- base-4.17.2.0
|
||||
- Recommended
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.4.7/docs/users_guide/9.4.7-notes.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.7/ghc-9.4.7-src.tar.xz
|
||||
@@ -3619,15 +3628,16 @@ ghcupDownloads:
|
||||
9.4.8:
|
||||
viTags:
|
||||
- base-4.17.2.1
|
||||
- Recommended
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.4.8/docs/users_guide/9.4.8-notes.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-src.tar.xz
|
||||
dlSubdir: ghc-9.4.8
|
||||
dlHash: 06775a52b4d13ac09edc6dabc299fd11e59d8886bbcae450af367baee2684c8f
|
||||
dlHash: 0bf407eb67fe3e3c24b0f4c8dea8cb63e07f63ca0f76cf2058565143507ab85e
|
||||
viTestDL:
|
||||
dlUri: https://downloads.haskell.org/ghc/9.4.8/ghc-9.4.8-testsuite.tar.xz
|
||||
dlSubdir: ghc-9.4.8/testsuite
|
||||
dlHash: a7ce907f7e3d38bee33af5cc23c74b53fe30d600fe5fc63b409c4c5675d2a69d
|
||||
dlHash: ac45dd44b097707a2717058ab2cfff22777ec0f31bfa3f54bf60e18b2dd63c95
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
@@ -3680,6 +3690,11 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-apple-darwin
|
||||
dlHash: fd9e21c2a9a10c60e39049e9cf1519b5b6a98a5b37e7623ba17bbd6e8dfc2036
|
||||
FreeBSD:
|
||||
'( >= 13 )':
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.4.8/ghc-9.4.8-x86_64-portbld-freebsd.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-portbld-freebsd
|
||||
dlHash: 36bdf52b441c8ef5a2768295407aea5f302a00c122b70b6bb2b352a8df221ad8
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-unknown-mingw32.tar.xz
|
||||
@@ -3703,6 +3718,11 @@ ghcupDownloads:
|
||||
unknown_versioning: *ghc-948-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-948-32-deb9
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.4.8/ghc-9.4.8-i386-alpine-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-i386-unknown-linux
|
||||
dlHash: 4738a79a7d5148fc0fdfcb7c6f9eb38f9da4f0ebe2ebeb47dcc6f0efbe88b334
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
@@ -3816,7 +3836,7 @@ ghcupDownloads:
|
||||
- base-4.18.0.0
|
||||
viTestDL:
|
||||
dlHash: 8bfa74d102da570cb87fbbc3465c7f778a4e6dc76606fef80207de7e8b64114f
|
||||
dlSubdir: ghc-9.6.1
|
||||
dlSubdir: ghc-9.6.1/testsuite
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-testsuite.tar.xz
|
||||
9.6.2:
|
||||
viArch:
|
||||
@@ -3931,17 +3951,27 @@ ghcupDownloads:
|
||||
unknown_versioning: *ghc-963-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-963-32-deb9
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: f06fda5e0eebf9325b6b471b2b77ab6072c42927c151a97382973f0f7d6ba9e2
|
||||
dlSubdir: ghc-9.6.3-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.6.3/ghc-9.6.3-i386-alpine-linux.tar.xz
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: dde46118ab8388fb1066312c097123e93b1dcf6ae366e3370f88ea456382c9db
|
||||
dlSubdir: ghc-9.6.3-x86_64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.3/ghc-9.6.3-x86_64-apple-darwin.tar.xz
|
||||
FreeBSD:
|
||||
'( >= 13 )':
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.6.3/ghc-9.6.3-x86_64-portbld-freebsd.tar.xz
|
||||
dlSubdir: ghc-9.6.3-x86_64-portbld-freebsd
|
||||
dlHash: e011a1663903412f1e6b05a1f84520cfaa4a3583cdf88424db2950fc7e9d152e
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: f9acd12ab36f0b52167d34af662d56a7ec42e7651afa4919da169e761df59e74
|
||||
dlHash: b4d1540dffc1f4864a3e6a0f1cb20e258c6ea87fbc9837d1bc8a920505727299
|
||||
dlSubdir: ghc-9.6.3-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.3/ghc-9.6.3-x86_64-alpine3_12-linux-static-int_native.tar.xz
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.6.3/ghc-9.6.3-x86_64-alpine-linux.tar.xz
|
||||
Linux_CentOS:
|
||||
( >= 7 && < 8 ): &ghc-963-64-centos7
|
||||
dlHash: 30ac2ada05a14aa785e3dd07edc9bba6e94043015bb1cafd75206315766132a4
|
||||
@@ -4012,9 +4042,114 @@ ghcupDownloads:
|
||||
- base-4.18.1.0
|
||||
viTestDL:
|
||||
dlHash: b0f92579288adf2320206627248d80d2abfe0e1b9ad2a22cf8f889bbe6806448
|
||||
dlSubdir: ghc-9.6.3
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.3/ghc-9.6.3-src.tar.xz
|
||||
|
||||
dlSubdir: ghc-9.6.3/testsuite
|
||||
dlUri: https://downloads.haskell.org/ghc/9.6.3/ghc-9.6.3-testsuite.tar.xz
|
||||
9.6.4:
|
||||
viTags:
|
||||
- base-4.18.2.0
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.6.4/docs/users_guide/9.6.4-notes.html
|
||||
viSourceDL:
|
||||
dlHash: 10bf25b8b07174fdd9868b5c0c56c17c0ef1edcb6247b4b864be933651bfd4c0
|
||||
dlSubdir: ghc-9.6.4
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-src.tar.xz
|
||||
viTestDL:
|
||||
dlHash: 6e13282fbebffdbfa0a49889437444c9a90cfe5760c47969cd4245854c338d73
|
||||
dlSubdir: ghc-9.6.4/testsuite
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-testsuite.tar.xz
|
||||
viArch:
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
<10: &ghc-964-32-deb9
|
||||
dlHash: 2069bbeeca4b4beef5343393a383fcd5b2ceae33be06006c512169d21f8eb9f8
|
||||
dlSubdir: ghc-9.6.4-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-i386-deb9-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-964-32-deb9
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: b897cbd156690f4e6cc4400f6b9465d610ea228d8527f8bd501210d1b93a4eab
|
||||
dlSubdir: ghc-9.6.4-x86_64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-apple-darwin.tar.xz
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: 914605fde1f0659468c5d6df934da54bd333535b33255dd1b8a6ff7e0a7463b5
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-alpine3_12-linux.tar.xz
|
||||
Linux_CentOS:
|
||||
( >= 7 && < 8 ): &ghc-964-64-centos7
|
||||
dlHash: 96231c5abcf397996f844e7db30954199eb5b4a407e3b31d6a4ed3ffd75bad2e
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-centos7-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-64-centos7
|
||||
Linux_Debian:
|
||||
(>= 10 && < 11):
|
||||
dlHash: 59885c43902110262cda168513dc6a9cc750e3e728dffb0cdb168e44929cb014
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-deb10-linux.tar.xz
|
||||
< 10:
|
||||
dlHash: 972c1c7cbc276741ceb9e4efc58ad4727e163317d5dcbf350404b84470300271
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-deb9-linux.tar.xz
|
||||
'>= 11': &ghc-964-64-deb11
|
||||
dlHash: 9c96072c64ea022f0006cc444762f666b7fbadfdc9ac556089a4ea2448187a73
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-deb11-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-64-deb11
|
||||
Linux_Fedora:
|
||||
'>= 33':
|
||||
dlHash: 6fd5574c66ecd67024de4cd6f1b3dd5d39dbe9abe10f627271ae0e322ad40fc8
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-fedora33-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-64-centos7
|
||||
Linux_Mint:
|
||||
< 20: &ghc-964-64-ubuntu1804
|
||||
dlHash: 11510a9de88f729028e2e64b97937305b11780c92777428495851d7211aa6768
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-ubuntu18_04-linux.tar.xz
|
||||
'>= 20': &ghc-964-64-ubuntu2004
|
||||
dlHash: de1e7dc03b08e7ed0cb08c855f2791e5f8fb48ca89b2a6fdf7b53cd1df48af25
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-ubuntu20_04-linux.tar.xz
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *ghc-964-64-centos7
|
||||
Linux_Ubuntu:
|
||||
( >= 16 && < 19 ): *ghc-964-64-ubuntu1804
|
||||
unknown_versioning: *ghc-964-64-ubuntu2004
|
||||
Linux_Rocky:
|
||||
unknown_versioning: &ghc-964-64-rocky8
|
||||
dlHash: a2672426634c0a440500fc473517c6f11ab0c327eab5ccc0bc09b17a88778ef9
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-rocky8-linux.tar.xz
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-964-64-rocky8
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlHash: 3d67397aa2c4c09fec05ad612453f8d906930dabb4c35c2327b82b8b07d8455a
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-mingw32
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-unknown-mingw32.tar.xz
|
||||
FreeBSD:
|
||||
'( >= 13 && < 14 )': &ghc-964-64-freebsd13
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.6.4/ghc-9.6.4-x86_64-portbld-freebsd13.tar.xz
|
||||
dlSubdir: ghc-9.6.4-x86_64-portbld-freebsd
|
||||
dlHash: c682758b4847ed1433898562fd1b805773cbbcbd8ee1ff8bd777f4da242027d1
|
||||
'>= 14':
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.6.4/ghc-9.6.4-x86_64-portbld-freebsd14.tar.xz
|
||||
dlSubdir: ghc-9.6.4-x86_64-portbld-freebsd
|
||||
dlHash: 552acaa209442f71f922b0a4b57c6f03ec4b8dc5cb35b6231917413c9beb46bf
|
||||
unknown_versioning: *ghc-964-64-freebsd13
|
||||
A_ARM64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: 25affc9ceb6f2032706ec1b4b7ba5d14bd34df3b5223d8060f210aece25feea9
|
||||
dlSubdir: ghc-9.6.4-aarch64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-aarch64-apple-darwin.tar.xz
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: d430345a66128c858e09dd9a90e5beabc045a9a3cedf776aea3adb45d1286276
|
||||
dlSubdir: ghc-9.6.4-aarch64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-aarch64-deb10-linux.tar.xz
|
||||
9.8.1:
|
||||
viArch:
|
||||
A_32:
|
||||
@@ -4030,6 +4165,11 @@ ghcupDownloads:
|
||||
unknown_versioning: *ghc981-i386-deb10
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc981-i386-deb10
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: 4ae25a6851d0526c8e227a6815be3888f9df9c2fc4507f6537cb38cdc52049f7
|
||||
dlSubdir: ghc-9.8.1-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.8.1/ghc-9.8.1-i386-alpine-linux.tar.xz
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
@@ -4037,6 +4177,11 @@ ghcupDownloads:
|
||||
dlOutput: ghc-9.8.1-x86_64-darwin.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-apple-darwin.tar.xz
|
||||
FreeBSD:
|
||||
'( >= 13 )':
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.8.1/ghc-9.8.1-x86_64-portbld-freebsd.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-portbld-freebsd
|
||||
dlHash: cb82a34c59611f02b0ae3398a0a2101966c0ad3ac479215f699d6848f28cfa42
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: d83e28a0ec6d9a88f7d16cdb64e1110cf122a64166b03b84cb87de38f0fb5e78
|
||||
@@ -4127,9 +4272,8 @@ ghcupDownloads:
|
||||
- base-4.19.0.0
|
||||
viTestDL:
|
||||
dlHash: 2626f3bb974428cbb795c5433017e18088f0d8de8a66d5a23ff4776847a5bec3
|
||||
dlOutput: ghc-9.8.1-testsuite.tar.xz
|
||||
dlSubdir: ghc-9.8.1
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-src.tar.xz
|
||||
dlSubdir: ghc-9.8.1/testsuite
|
||||
dlUri: https://downloads.haskell.org/ghc/9.8.1/ghc-9.8.1-testsuite.tar.xz
|
||||
|
||||
Cabal:
|
||||
2.4.1.0:
|
||||
@@ -4137,7 +4281,7 @@ ghcupDownloads:
|
||||
- old
|
||||
viPostInstall: &cabal-HSEC-2023-0015 |
|
||||
This release is vulnerable: https://github.com/haskell/security-advisories/blob/main/advisories/hackage/cabal-install/HSEC-2023-0015.md
|
||||
Update to 3.6.2.0-p1 or 3.10.2.0.
|
||||
Update to 3.10.2.0 or later.
|
||||
viChangeLog: https://downloads.haskell.org/~cabal/cabal-install-2.4.1.0/changelog
|
||||
viArch:
|
||||
A_64:
|
||||
@@ -4450,13 +4594,12 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.6.2.0/cabal-install-3.6.2.0-armv7-linux-deb10.tar.xz
|
||||
dlHash: 694ba7c14f8d720c6e790ab0488dbff2d8a07d9c6de97b4deeba31088f825bc2
|
||||
3.6.2.0-p1:
|
||||
viTags:
|
||||
- Recommended
|
||||
viTags: []
|
||||
viPostInstall: |
|
||||
This is a distributor release to fix https://github.com/haskell/security-advisories/blob/main/advisories/hackage/cabal-install/HSEC-2023-0015.md
|
||||
The applied downstream patches can be viewed here: https://github.com/hasufell/cabal/tree/cabal-install-v3.6.2.1
|
||||
Upstream PR: https://github.com/haskell/cabal/issues/9451
|
||||
You can alternatively update to 3.10.2.0.
|
||||
You can alternatively update to 3.10.2.0 or later.
|
||||
viChangeLog: https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.6.2.0.md
|
||||
viArch:
|
||||
A_64:
|
||||
@@ -4642,7 +4785,7 @@ ghcupDownloads:
|
||||
3.10.2.0:
|
||||
viPostInstall: "cabal run is currently partially broken on Windows, please see https://github.com/haskell/cabal/issues/9334"
|
||||
viTags:
|
||||
- Latest
|
||||
- old
|
||||
viChangeLog: https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.10.2.0.md
|
||||
viArch:
|
||||
A_64:
|
||||
@@ -4695,6 +4838,7 @@ ghcupDownloads:
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-freebsd.tar.xz
|
||||
dlSubdir: cabal-install-3.10.2.0-x86_64-freebsd
|
||||
dlHash: 6dcd9d38a9f2101a0a3c3b74cacb2e41b8f7226f181780c0f872f2f1206dee37
|
||||
A_32:
|
||||
Linux_UnknownLinux:
|
||||
@@ -4723,6 +4867,117 @@ ghcupDownloads:
|
||||
unknown_versioning: *cabal-31020-arm64
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *cabal-31020-arm64
|
||||
3.10.2.1:
|
||||
viPostInstall: "cabal run is currently partially broken on Windows, please see https://github.com/haskell/cabal/issues/9334"
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.10.2.0.md
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-31021-64-unknown
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-unknown.tar.xz
|
||||
dlHash: ac565f37cd6c8952090a0f5b81a25cf2a3a0f15f89905b006e0f908f84506ad7
|
||||
Linux_Debian:
|
||||
'< 10': &cabal-31021-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-deb9.tar.xz
|
||||
dlHash: dae2be181d8cf980dadbc29d3e1b6101ae190449c280a2c2f72170625b216d08
|
||||
'(>= 10 && < 11)': &cabal-31021-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-deb10.tar.xz
|
||||
dlHash: e121eec7c04f827b59937c712efa6f7cc84bdb0c3a618c7ca381302320ff1303
|
||||
'( >= 11)': &cabal-31021-64-deb11
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-deb11.tar.xz
|
||||
dlHash: e0b1a349749632f8aeeab6a92a779d86e99715dcabdbd15289b7ed72e08c2a57
|
||||
unknown_versioning: *cabal-31021-64-deb9
|
||||
Linux_Ubuntu:
|
||||
'( >= 16 && < 19 )': &cabal-31021-64-ubuntu18
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-ubuntu18.04.tar.xz
|
||||
dlHash: 2a31fc80be11aaf57e94b7e5f45cc010acccaa090309792921210c4bf1debaf1
|
||||
'( >= 20 && < 22 )': &cabal-31021-64-ubuntu20
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-ubuntu20.04.tar.xz
|
||||
dlHash: b0d0726d8bbc4e8b586672562482c6be9c57127dfcc8b48bddc55ed32c8412cb
|
||||
'( >= 22 )': &cabal-31021-64-ubuntu22
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-ubuntu22.04.tar.xz
|
||||
dlHash: 6ad7eb87f191c6891668d7ad81eabbaef53f9cbfdb017ae6e8736882523e0d8e
|
||||
unknown_versioning: *cabal-31021-64-unknown
|
||||
Linux_Mint:
|
||||
'(>= 20 && < 21)': &cabal-31021-64-mint20
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-mint20.tar.xz
|
||||
dlHash: 9a309e1a532c67e560ce2392a753ee01e8314f87d8eb286f6f9bdfea61ffd8eb
|
||||
'>= 21': &cabal-31021-64-mint21
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-mint21.tar.xz
|
||||
dlHash: e93ea8c55cf0315598f02b6129baf0c3c66537c2e7ecd3ee4f17378ea8b9aa7f
|
||||
unknown_versioning: *cabal-31021-64-unknown
|
||||
Linux_Fedora:
|
||||
'< 33': &cabal-31021-64-fedora27
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-fedora27.tar.xz
|
||||
dlHash: 7cf6c7c5e704822360b2c85ce47db89e6cf122b020d57ed487313a9f8360b8c5
|
||||
'(>= 33 && < 37)': &cabal-31021-64-fedora33
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-fedora33.tar.xz
|
||||
dlHash: 7303ca87c745bfc6c2dca7b1438d254419eebea185a02840b7f9af6a70900e6c
|
||||
'>= 37': &cabal-31021-64-fedora37
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-fedora37.tar.xz
|
||||
dlHash: 7a439775c63c6b994101d39ba1e9a8f326aeeffe15c5c8f87ab3f70493fa929a
|
||||
unknown_versioning: *cabal-31021-64-unknown
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &cabal-31021-64-centos
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-centos7.tar.xz
|
||||
dlHash: 0d3735af6ddaa84d0822db296f5401bc5ba0189c0b171dedf23174cbde25a126
|
||||
unknown_versioning: *cabal-31021-64-unknown
|
||||
Linux_Rocky:
|
||||
'( >= 8 && < 9 )': &cabal-31021-64-rocky8
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-rocky8.tar.xz
|
||||
dlHash: 6a92fae58d3e62f7438a59e6ce128eb49278e6e6f07b744b63382778dba508e7
|
||||
'( >= 9 )': &cabal-31021-64-rocky9
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-rocky9.tar.xz
|
||||
dlHash: 79eba1969b943e709d2dd1b745ea0557f500263fac149f8daf084ed6ed92834a
|
||||
unknown_versioning: *cabal-31021-64-unknown
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *cabal-31021-64-unknown
|
||||
Linux_Alpine:
|
||||
'( >= 3.12 && < 3.19 )': &cabal-31021-64-alpine312
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-alpine312.tar.xz
|
||||
dlHash: 6b33b06ff19e11ce9648dfeed4359cbe92d0239bdabf956ea03078fc428e5d1c
|
||||
'( >= 3.19 )': &cabal-31021-64-alpine319
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-linux-alpine319.tar.xz
|
||||
dlHash: b91f53717c6bc6af53cf1929f71779af26932eadc394a1e72d16d033757b35a6
|
||||
unknown_versioning: *cabal-31021-64-unknown
|
||||
Linux_Void:
|
||||
unknown_versioning: *cabal-31021-64-unknown
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-apple-darwin.tar.xz
|
||||
dlHash: 38f4c0f989f10a173c3d2d32a852c70cd5c8ed24db4a0320a6841afda26f0382
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-mingw64.zip
|
||||
dlHash: cca5560db0f6f759f16eed222537f65b0cc55b854988cbb2e24902494c330654
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-x86_64-portbld-freebsd.tar.xz
|
||||
dlHash: 414accf40d612307d050494fae961d2c2e77ae31e4eb303642233e296fda5170
|
||||
A_32:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-31021-32-unknown
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-i386-linux-unknown.tar.xz
|
||||
dlHash: 7303dd5cf6a13e787fe275d3f26ec8f4eb1b70b8af8fe07072ca28074c7f66e8
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *cabal-31021-32-unknown
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-aarch64-linux-deb10.tar.xz
|
||||
dlHash: a053887137bb2077b4959a3588fb20dc53c50b391f4d800f6c893ce3da6fe40a
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-aarch64-apple-darwin.tar.xz
|
||||
dlHash: e6e050a37e78d94854db666d2670a65c2ff9b9e24cb62839f0a516582e7ff773
|
||||
A_ARM:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.2.1/cabal-install-3.10.2.1-armv7-linux-deb10.tar.xz
|
||||
dlHash: 33a8e115714c95c0724aa3bbabc34fecd2d02868bf8a1af374fcab5868f896af
|
||||
GHCup:
|
||||
0.1.20.0:
|
||||
viTags:
|
||||
@@ -5925,9 +6180,7 @@ ghcupDownloads:
|
||||
dlSubdir: haskell-language-server-2.3.0.0
|
||||
dlHash: bb16e491117b7677742ca730b741b0d8154aa3222bbaa8578d487eda5152910a
|
||||
2.4.0.0:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
@@ -6020,6 +6273,102 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 74cfa47f961ac5607055ca2f400b471a535e7b982e910e187c7c1303b048eeaf
|
||||
2.5.0.0:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-src.tar.gz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 515bbff3eca30a5d584f9a0b1b64651f9bd0ea666888c70e31692a1c95528c36
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
'< 10': &hls-2500-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-deb9.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: ba336f29647492134509e83da0cc8c8ecfbe3d264bd2c6825a1f00344f602e53
|
||||
'(>= 10 && < 11)': &hls-2500-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-deb10.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 9503db02a03e3d50d78b42b866fb32478dedb9906d278dd1ad4432740b3d3d36
|
||||
unknown_versioning: &hls-2500-64-deb11
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-deb11.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: fe8e97dd6de79b6df1b0138ee2090d392b85cbf7df13d1efa8a3827091cfef48
|
||||
Linux_Ubuntu:
|
||||
'( >= 16 && < 19 )': &hls-2500-64-ubuntu18
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-ubuntu18.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: d43e4858ff798c147a7c12f5d92cf8ca1fa345e7da3f3c1f05acf7bd0f83ee26
|
||||
'( >= 20 && < 22 )': &hls-2500-64-ubuntu20
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-ubuntu20.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 7c1800a7af1bf5777114aa7e96cca94fdf6b34dc839a7eb3ad725e28efac0250
|
||||
unknown_versioning: &hls-2500-64-ubuntu22
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-ubuntu22.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 641888bc81570f8c66d7def5f05d64419b29d51e1d61b2470f4076555b54d5e7
|
||||
Linux_Mint:
|
||||
'< 20':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-mint19.3.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 49944981fa4b6489aace7b7c1ab71a5c8b2f650c50cd6e5dad8fb107a11f042a
|
||||
'(>= 20 && < 21)':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-mint20.2.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 4ff9d1edf6b07f6339680580d73afb2f1004189da4751fe205d0e5d6f48f83bf
|
||||
'>= 21': *hls-2500-64-ubuntu22
|
||||
Linux_Fedora:
|
||||
'< 33': &hls-2500-64-fedora27
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-fedora27.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: a1d321c098949635d5e83d85a14d472ce874884096843fbfccc74cbda9d6a162
|
||||
'>= 33': &hls-2500-64-fedora33
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-fedora33.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: f2c233ee6f788cbf337c55fcaf0902fd1e363f581979437735c90483f97c5cd7
|
||||
unknown_versioning: *hls-2500-64-fedora27
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &hls-2500-64-centos
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-centos7.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 34f643436b3e2e2a68a1d89ff1db7c3c0bde25af27de981b513aa8cdbfb5ca9e
|
||||
unknown_versioning: *hls-2500-64-centos
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *hls-2500-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-unknown.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 79bdb285910a6940ddb7961ea0ffad1e5f9101afdcc332355dc5c67b821775c9
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 189e7dadad22d330052f5257c9724f834e1373ea3213f0b12a4a1b8a9c45a62e
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-mingw64.zip
|
||||
dlHash: 15a2536e30ee0f5cd226a3f37f907f1a1121ce9ff451d1b7b738138fdb17d699
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/haskell-language-server/2.5.0.0/haskell-language-server-2.5.0.0-x86_64-freebsd.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 17662583522bd48a5e1f580cb6d7abc6d77c871e274fda77c1216131be39546b
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-aarch64-linux-ubuntu20.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 47b5daf644cbfafc097470cdde7add6060f9fd27e0d4b746ccd11f8d23524c16
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 2e5083ebf7fc9dd3c5aa31059f9336bec4407fffb21b93a20decb49e9cf880a4
|
||||
Stack:
|
||||
2.5.1:
|
||||
viTags:
|
||||
@@ -6280,8 +6629,7 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/ghcup/unofficial-bindists/stack/2.9.3/stack-2.9.3-osx-aarch64.tar.gz
|
||||
dlHash: a56d2cd37611eccf00ab8df38c3718923cf5677f3aeacd250394e79b676dcb98
|
||||
2.11.1:
|
||||
viTags:
|
||||
- Recommended
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v2111---2023-05-18
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
@@ -6326,6 +6674,7 @@ ghcupDownloads:
|
||||
2.13.1:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v2131---2023-09-29
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
@@ -6348,10 +6697,10 @@ ghcupDownloads:
|
||||
dlHash: 728be2371e257c6960341167192fa704ff1f92ab61657dd4781710a257fae7c1
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
# FreeBSD:
|
||||
# unknown_versioning:
|
||||
# dlUri: https://downloads.haskell.org/ghcup/unofficial-bindists/stack/2.13.1/stack-2.13.1-freebsd-x86_64.tar.xz
|
||||
# dlHash: <replace_me>
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/stack/2.13.1/stack-2.13.1-freebsd-x86_64.tar.xz
|
||||
dlHash: 3a1a026d747d8f4858fc83080143acc10dbd7a40a766848bebeb401fde5afd4c
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *stack-2131-64
|
||||
A_ARM64:
|
||||
|
||||
Binary file not shown.
@@ -52,7 +52,7 @@ executable ghcup-gen
|
||||
, deepseq ^>=1.4
|
||||
, filepath ^>=1.4.2.1
|
||||
, ghcup ^>=0.1.19.0
|
||||
, haskus-utils-variant ^>=3.2
|
||||
, haskus-utils-variant ^>=3.3
|
||||
, libarchive ^>=3.0.3.0
|
||||
, megaparsec >=8.0.0 && <9.3
|
||||
, mtl ^>=2.2
|
||||
|
||||
@@ -3447,11 +3447,11 @@ ghcupDownloads:
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-src.tar.xz
|
||||
dlSubdir: ghc-9.4.8
|
||||
dlHash: 06775a52b4d13ac09edc6dabc299fd11e59d8886bbcae450af367baee2684c8f
|
||||
dlHash: 0bf407eb67fe3e3c24b0f4c8dea8cb63e07f63ca0f76cf2058565143507ab85e
|
||||
viTestDL:
|
||||
dlUri: https://downloads.haskell.org/ghc/9.4.8/ghc-9.4.8-testsuite.tar.xz
|
||||
dlSubdir: ghc-9.4.8/testsuite
|
||||
dlHash: a7ce907f7e3d38bee33af5cc23c74b53fe30d600fe5fc63b409c4c5675d2a69d
|
||||
dlHash: ac45dd44b097707a2717058ab2cfff22777ec0f31bfa3f54bf60e18b2dd63c95
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
@@ -3635,7 +3635,7 @@ ghcupDownloads:
|
||||
- base-4.18.0.0
|
||||
viTestDL:
|
||||
dlHash: 8bfa74d102da570cb87fbbc3465c7f778a4e6dc76606fef80207de7e8b64114f
|
||||
dlSubdir: ghc-9.6.1
|
||||
dlSubdir: ghc-9.6.1/testsuite
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-testsuite.tar.xz
|
||||
9.6.2:
|
||||
viArch:
|
||||
@@ -3832,9 +3832,106 @@ ghcupDownloads:
|
||||
- base-4.18.1.0
|
||||
viTestDL:
|
||||
dlHash: b0f92579288adf2320206627248d80d2abfe0e1b9ad2a22cf8f889bbe6806448
|
||||
dlSubdir: ghc-9.6.3
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.3/ghc-9.6.3-src.tar.xz
|
||||
|
||||
dlSubdir: ghc-9.6.3/testsuite
|
||||
dlUri: https://downloads.haskell.org/ghc/9.6.3/ghc-9.6.3-testsuite.tar.xz
|
||||
9.6.4:
|
||||
viArch:
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
<10: &ghc-964-32-deb9
|
||||
dlHash: 2069bbeeca4b4beef5343393a383fcd5b2ceae33be06006c512169d21f8eb9f8
|
||||
dlSubdir: ghc-9.6.4-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-i386-deb9-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-32-deb9
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc-964-32-deb9
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-964-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-964-32-deb9
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: b897cbd156690f4e6cc4400f6b9465d610ea228d8527f8bd501210d1b93a4eab
|
||||
dlSubdir: ghc-9.6.4-x86_64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-apple-darwin.tar.xz
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: 914605fde1f0659468c5d6df934da54bd333535b33255dd1b8a6ff7e0a7463b5
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-alpine3_12-linux.tar.xz
|
||||
Linux_CentOS:
|
||||
( >= 7 && < 8 ): &ghc-964-64-centos7
|
||||
dlHash: 96231c5abcf397996f844e7db30954199eb5b4a407e3b31d6a4ed3ffd75bad2e
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-centos7-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-64-centos7
|
||||
Linux_Debian:
|
||||
(>= 10 && < 11):
|
||||
dlHash: 59885c43902110262cda168513dc6a9cc750e3e728dffb0cdb168e44929cb014
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-deb10-linux.tar.xz
|
||||
< 10:
|
||||
dlHash: 972c1c7cbc276741ceb9e4efc58ad4727e163317d5dcbf350404b84470300271
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-deb9-linux.tar.xz
|
||||
'>= 11': &ghc-964-64-deb11
|
||||
dlHash: 9c96072c64ea022f0006cc444762f666b7fbadfdc9ac556089a4ea2448187a73
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-deb11-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-64-deb11
|
||||
Linux_Fedora:
|
||||
'>= 33':
|
||||
dlHash: 6fd5574c66ecd67024de4cd6f1b3dd5d39dbe9abe10f627271ae0e322ad40fc8
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-fedora33-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-64-centos7
|
||||
Linux_Mint:
|
||||
< 20: &ghc-964-64-ubuntu1804
|
||||
dlHash: 11510a9de88f729028e2e64b97937305b11780c92777428495851d7211aa6768
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-ubuntu18_04-linux.tar.xz
|
||||
'>= 20': &ghc-964-64-ubuntu2004
|
||||
dlHash: de1e7dc03b08e7ed0cb08c855f2791e5f8fb48ca89b2a6fdf7b53cd1df48af25
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-ubuntu20_04-linux.tar.xz
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *ghc-964-64-centos7
|
||||
Linux_Ubuntu:
|
||||
( >= 16 && < 19 ): *ghc-964-64-ubuntu1804
|
||||
unknown_versioning: *ghc-964-64-ubuntu2004
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: a2672426634c0a440500fc473517c6f11ab0c327eab5ccc0bc09b17a88778ef9
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-rocky8-linux.tar.xz
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlHash: 3d67397aa2c4c09fec05ad612453f8d906930dabb4c35c2327b82b8b07d8455a
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-mingw32
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-unknown-mingw32.tar.xz
|
||||
A_ARM64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: 25affc9ceb6f2032706ec1b4b7ba5d14bd34df3b5223d8060f210aece25feea9
|
||||
dlSubdir: ghc-9.6.4-aarch64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-aarch64-apple-darwin.tar.xz
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: d430345a66128c858e09dd9a90e5beabc045a9a3cedf776aea3adb45d1286276
|
||||
dlSubdir: ghc-9.6.4-aarch64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-aarch64-deb10-linux.tar.xz
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.6.4/docs/users_guide/9.6.4-notes.html
|
||||
viSourceDL:
|
||||
dlHash: 10bf25b8b07174fdd9868b5c0c56c17c0ef1edcb6247b4b864be933651bfd4c0
|
||||
dlSubdir: ghc-9.6.4
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-src.tar.xz
|
||||
viTags:
|
||||
- base-4.18.2.0
|
||||
viTestDL:
|
||||
dlHash: 6e13282fbebffdbfa0a49889437444c9a90cfe5760c47969cd4245854c338d73
|
||||
dlSubdir: ghc-9.6.4/testsuite
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-testsuite.tar.xz
|
||||
9.8.1:
|
||||
viArch:
|
||||
A_32:
|
||||
@@ -3947,9 +4044,8 @@ ghcupDownloads:
|
||||
- base-4.19.0.0
|
||||
viTestDL:
|
||||
dlHash: 2626f3bb974428cbb795c5433017e18088f0d8de8a66d5a23ff4776847a5bec3
|
||||
dlOutput: ghc-9.8.1-testsuite.tar.xz
|
||||
dlSubdir: ghc-9.8.1
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-src.tar.xz
|
||||
dlSubdir: ghc-9.8.1/testsuite
|
||||
dlUri: https://downloads.haskell.org/ghc/9.8.1/ghc-9.8.1-testsuite.tar.xz
|
||||
|
||||
Cabal:
|
||||
2.4.1.0:
|
||||
@@ -4351,6 +4447,7 @@ ghcupDownloads:
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-freebsd.tar.xz
|
||||
dlSubdir: cabal-install-3.10.2.0-x86_64-freebsd
|
||||
dlHash: 6dcd9d38a9f2101a0a3c3b74cacb2e41b8f7226f181780c0f872f2f1206dee37
|
||||
A_32:
|
||||
Linux_UnknownLinux:
|
||||
@@ -5523,9 +5620,7 @@ ghcupDownloads:
|
||||
dlSubdir: haskell-language-server-2.3.0.0
|
||||
dlHash: bb16e491117b7677742ca730b741b0d8154aa3222bbaa8578d487eda5152910a
|
||||
2.4.0.0:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
@@ -5618,7 +5713,97 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 74cfa47f961ac5607055ca2f400b471a535e7b982e910e187c7c1303b048eeaf
|
||||
|
||||
2.5.0.0:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-src.tar.gz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 515bbff3eca30a5d584f9a0b1b64651f9bd0ea666888c70e31692a1c95528c36
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
'< 10': &hls-2500-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-deb9.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: ba336f29647492134509e83da0cc8c8ecfbe3d264bd2c6825a1f00344f602e53
|
||||
'(>= 10 && < 11)': &hls-2500-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-deb10.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 9503db02a03e3d50d78b42b866fb32478dedb9906d278dd1ad4432740b3d3d36
|
||||
unknown_versioning: &hls-2500-64-deb11
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-deb11.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: fe8e97dd6de79b6df1b0138ee2090d392b85cbf7df13d1efa8a3827091cfef48
|
||||
Linux_Ubuntu:
|
||||
'( >= 16 && < 19 )': &hls-2500-64-ubuntu18
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-ubuntu18.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: d43e4858ff798c147a7c12f5d92cf8ca1fa345e7da3f3c1f05acf7bd0f83ee26
|
||||
'( >= 20 && < 22 )': &hls-2500-64-ubuntu20
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-ubuntu20.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 7c1800a7af1bf5777114aa7e96cca94fdf6b34dc839a7eb3ad725e28efac0250
|
||||
unknown_versioning: &hls-2500-64-ubuntu22
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-ubuntu22.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 641888bc81570f8c66d7def5f05d64419b29d51e1d61b2470f4076555b54d5e7
|
||||
Linux_Mint:
|
||||
'< 20':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-mint19.3.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 49944981fa4b6489aace7b7c1ab71a5c8b2f650c50cd6e5dad8fb107a11f042a
|
||||
'(>= 20 && < 21)':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-mint20.2.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 4ff9d1edf6b07f6339680580d73afb2f1004189da4751fe205d0e5d6f48f83bf
|
||||
'>= 21': *hls-2500-64-ubuntu22
|
||||
Linux_Fedora:
|
||||
'< 33': &hls-2500-64-fedora27
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-fedora27.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: a1d321c098949635d5e83d85a14d472ce874884096843fbfccc74cbda9d6a162
|
||||
'>= 33': &hls-2500-64-fedora33
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-fedora33.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: f2c233ee6f788cbf337c55fcaf0902fd1e363f581979437735c90483f97c5cd7
|
||||
unknown_versioning: *hls-2500-64-fedora27
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &hls-2500-64-centos
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-centos7.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 34f643436b3e2e2a68a1d89ff1db7c3c0bde25af27de981b513aa8cdbfb5ca9e
|
||||
unknown_versioning: *hls-2500-64-centos
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *hls-2500-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-unknown.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 79bdb285910a6940ddb7961ea0ffad1e5f9101afdcc332355dc5c67b821775c9
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 189e7dadad22d330052f5257c9724f834e1373ea3213f0b12a4a1b8a9c45a62e
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-mingw64.zip
|
||||
dlHash: 15a2536e30ee0f5cd226a3f37f907f1a1121ce9ff451d1b7b738138fdb17d699
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-aarch64-linux-ubuntu20.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 47b5daf644cbfafc097470cdde7add6060f9fd27e0d4b746ccd11f8d23524c16
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 2e5083ebf7fc9dd3c5aa31059f9336bec4407fffb21b93a20decb49e9cf880a4
|
||||
Stack:
|
||||
2.5.1:
|
||||
viTags:
|
||||
|
||||
Binary file not shown.
@@ -3447,11 +3447,11 @@ ghcupDownloads:
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-src.tar.xz
|
||||
dlSubdir: ghc-9.4.8
|
||||
dlHash: 06775a52b4d13ac09edc6dabc299fd11e59d8886bbcae450af367baee2684c8f
|
||||
dlHash: 0bf407eb67fe3e3c24b0f4c8dea8cb63e07f63ca0f76cf2058565143507ab85e
|
||||
viTestDL:
|
||||
dlUri: https://downloads.haskell.org/ghc/9.4.8/ghc-9.4.8-testsuite.tar.xz
|
||||
dlSubdir: ghc-9.4.8/testsuite
|
||||
dlHash: a7ce907f7e3d38bee33af5cc23c74b53fe30d600fe5fc63b409c4c5675d2a69d
|
||||
dlHash: ac45dd44b097707a2717058ab2cfff22777ec0f31bfa3f54bf60e18b2dd63c95
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
@@ -3635,7 +3635,7 @@ ghcupDownloads:
|
||||
- base-4.18.0.0
|
||||
viTestDL:
|
||||
dlHash: 8bfa74d102da570cb87fbbc3465c7f778a4e6dc76606fef80207de7e8b64114f
|
||||
dlSubdir: ghc-9.6.1
|
||||
dlSubdir: ghc-9.6.1/testsuite
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-testsuite.tar.xz
|
||||
9.6.2:
|
||||
viArch:
|
||||
@@ -3832,9 +3832,106 @@ ghcupDownloads:
|
||||
- base-4.18.1.0
|
||||
viTestDL:
|
||||
dlHash: b0f92579288adf2320206627248d80d2abfe0e1b9ad2a22cf8f889bbe6806448
|
||||
dlSubdir: ghc-9.6.3
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.3/ghc-9.6.3-src.tar.xz
|
||||
|
||||
dlSubdir: ghc-9.6.3/testsuite
|
||||
dlUri: https://downloads.haskell.org/ghc/9.6.3/ghc-9.6.3-testsuite.tar.xz
|
||||
9.6.4:
|
||||
viArch:
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
<10: &ghc-964-32-deb9
|
||||
dlHash: 2069bbeeca4b4beef5343393a383fcd5b2ceae33be06006c512169d21f8eb9f8
|
||||
dlSubdir: ghc-9.6.4-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-i386-deb9-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-32-deb9
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc-964-32-deb9
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-964-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-964-32-deb9
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: b897cbd156690f4e6cc4400f6b9465d610ea228d8527f8bd501210d1b93a4eab
|
||||
dlSubdir: ghc-9.6.4-x86_64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-apple-darwin.tar.xz
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: 914605fde1f0659468c5d6df934da54bd333535b33255dd1b8a6ff7e0a7463b5
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-alpine3_12-linux.tar.xz
|
||||
Linux_CentOS:
|
||||
( >= 7 && < 8 ): &ghc-964-64-centos7
|
||||
dlHash: 96231c5abcf397996f844e7db30954199eb5b4a407e3b31d6a4ed3ffd75bad2e
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-centos7-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-64-centos7
|
||||
Linux_Debian:
|
||||
(>= 10 && < 11):
|
||||
dlHash: 59885c43902110262cda168513dc6a9cc750e3e728dffb0cdb168e44929cb014
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-deb10-linux.tar.xz
|
||||
< 10:
|
||||
dlHash: 972c1c7cbc276741ceb9e4efc58ad4727e163317d5dcbf350404b84470300271
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-deb9-linux.tar.xz
|
||||
'>= 11': &ghc-964-64-deb11
|
||||
dlHash: 9c96072c64ea022f0006cc444762f666b7fbadfdc9ac556089a4ea2448187a73
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-deb11-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-64-deb11
|
||||
Linux_Fedora:
|
||||
'>= 33':
|
||||
dlHash: 6fd5574c66ecd67024de4cd6f1b3dd5d39dbe9abe10f627271ae0e322ad40fc8
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-fedora33-linux.tar.xz
|
||||
unknown_versioning: *ghc-964-64-centos7
|
||||
Linux_Mint:
|
||||
< 20: &ghc-964-64-ubuntu1804
|
||||
dlHash: 11510a9de88f729028e2e64b97937305b11780c92777428495851d7211aa6768
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-ubuntu18_04-linux.tar.xz
|
||||
'>= 20': &ghc-964-64-ubuntu2004
|
||||
dlHash: de1e7dc03b08e7ed0cb08c855f2791e5f8fb48ca89b2a6fdf7b53cd1df48af25
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-ubuntu20_04-linux.tar.xz
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *ghc-964-64-centos7
|
||||
Linux_Ubuntu:
|
||||
( >= 16 && < 19 ): *ghc-964-64-ubuntu1804
|
||||
unknown_versioning: *ghc-964-64-ubuntu2004
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: a2672426634c0a440500fc473517c6f11ab0c327eab5ccc0bc09b17a88778ef9
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-rocky8-linux.tar.xz
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlHash: 3d67397aa2c4c09fec05ad612453f8d906930dabb4c35c2327b82b8b07d8455a
|
||||
dlSubdir: ghc-9.6.4-x86_64-unknown-mingw32
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-unknown-mingw32.tar.xz
|
||||
A_ARM64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: 25affc9ceb6f2032706ec1b4b7ba5d14bd34df3b5223d8060f210aece25feea9
|
||||
dlSubdir: ghc-9.6.4-aarch64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-aarch64-apple-darwin.tar.xz
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: d430345a66128c858e09dd9a90e5beabc045a9a3cedf776aea3adb45d1286276
|
||||
dlSubdir: ghc-9.6.4-aarch64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-aarch64-deb10-linux.tar.xz
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.6.4/docs/users_guide/9.6.4-notes.html
|
||||
viSourceDL:
|
||||
dlHash: 10bf25b8b07174fdd9868b5c0c56c17c0ef1edcb6247b4b864be933651bfd4c0
|
||||
dlSubdir: ghc-9.6.4
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-src.tar.xz
|
||||
viTags:
|
||||
- base-4.18.2.0
|
||||
viTestDL:
|
||||
dlHash: 6e13282fbebffdbfa0a49889437444c9a90cfe5760c47969cd4245854c338d73
|
||||
dlSubdir: ghc-9.6.4/testsuite
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-testsuite.tar.xz
|
||||
9.8.1:
|
||||
viArch:
|
||||
A_32:
|
||||
@@ -3947,9 +4044,8 @@ ghcupDownloads:
|
||||
- base-4.19.0.0
|
||||
viTestDL:
|
||||
dlHash: 2626f3bb974428cbb795c5433017e18088f0d8de8a66d5a23ff4776847a5bec3
|
||||
dlOutput: ghc-9.8.1-testsuite.tar.xz
|
||||
dlSubdir: ghc-9.8.1
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-src.tar.xz
|
||||
dlSubdir: ghc-9.8.1/testsuite
|
||||
dlUri: https://downloads.haskell.org/ghc/9.8.1/ghc-9.8.1-testsuite.tar.xz
|
||||
|
||||
Cabal:
|
||||
2.4.1.0:
|
||||
@@ -4351,6 +4447,7 @@ ghcupDownloads:
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-freebsd.tar.xz
|
||||
dlSubdir: cabal-install-3.10.2.0-x86_64-freebsd
|
||||
dlHash: 6dcd9d38a9f2101a0a3c3b74cacb2e41b8f7226f181780c0f872f2f1206dee37
|
||||
A_32:
|
||||
Linux_UnknownLinux:
|
||||
@@ -5523,9 +5620,7 @@ ghcupDownloads:
|
||||
dlSubdir: haskell-language-server-2.3.0.0
|
||||
dlHash: bb16e491117b7677742ca730b741b0d8154aa3222bbaa8578d487eda5152910a
|
||||
2.4.0.0:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
@@ -5618,7 +5713,97 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 74cfa47f961ac5607055ca2f400b471a535e7b982e910e187c7c1303b048eeaf
|
||||
|
||||
2.5.0.0:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-src.tar.gz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 515bbff3eca30a5d584f9a0b1b64651f9bd0ea666888c70e31692a1c95528c36
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
'< 10': &hls-2500-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-deb9.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: ba336f29647492134509e83da0cc8c8ecfbe3d264bd2c6825a1f00344f602e53
|
||||
'(>= 10 && < 11)': &hls-2500-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-deb10.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 9503db02a03e3d50d78b42b866fb32478dedb9906d278dd1ad4432740b3d3d36
|
||||
unknown_versioning: &hls-2500-64-deb11
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-deb11.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: fe8e97dd6de79b6df1b0138ee2090d392b85cbf7df13d1efa8a3827091cfef48
|
||||
Linux_Ubuntu:
|
||||
'( >= 16 && < 19 )': &hls-2500-64-ubuntu18
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-ubuntu18.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: d43e4858ff798c147a7c12f5d92cf8ca1fa345e7da3f3c1f05acf7bd0f83ee26
|
||||
'( >= 20 && < 22 )': &hls-2500-64-ubuntu20
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-ubuntu20.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 7c1800a7af1bf5777114aa7e96cca94fdf6b34dc839a7eb3ad725e28efac0250
|
||||
unknown_versioning: &hls-2500-64-ubuntu22
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-ubuntu22.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 641888bc81570f8c66d7def5f05d64419b29d51e1d61b2470f4076555b54d5e7
|
||||
Linux_Mint:
|
||||
'< 20':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-mint19.3.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 49944981fa4b6489aace7b7c1ab71a5c8b2f650c50cd6e5dad8fb107a11f042a
|
||||
'(>= 20 && < 21)':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-mint20.2.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 4ff9d1edf6b07f6339680580d73afb2f1004189da4751fe205d0e5d6f48f83bf
|
||||
'>= 21': *hls-2500-64-ubuntu22
|
||||
Linux_Fedora:
|
||||
'< 33': &hls-2500-64-fedora27
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-fedora27.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: a1d321c098949635d5e83d85a14d472ce874884096843fbfccc74cbda9d6a162
|
||||
'>= 33': &hls-2500-64-fedora33
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-fedora33.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: f2c233ee6f788cbf337c55fcaf0902fd1e363f581979437735c90483f97c5cd7
|
||||
unknown_versioning: *hls-2500-64-fedora27
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &hls-2500-64-centos
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-centos7.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 34f643436b3e2e2a68a1d89ff1db7c3c0bde25af27de981b513aa8cdbfb5ca9e
|
||||
unknown_versioning: *hls-2500-64-centos
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *hls-2500-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-linux-unknown.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 79bdb285910a6940ddb7961ea0ffad1e5f9101afdcc332355dc5c67b821775c9
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 189e7dadad22d330052f5257c9724f834e1373ea3213f0b12a4a1b8a9c45a62e
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-x86_64-mingw64.zip
|
||||
dlHash: 15a2536e30ee0f5cd226a3f37f907f1a1121ce9ff451d1b7b738138fdb17d699
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-aarch64-linux-ubuntu20.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 47b5daf644cbfafc097470cdde7add6060f9fd27e0d4b746ccd11f8d23524c16
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.5.0.0/haskell-language-server-2.5.0.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.5.0.0
|
||||
dlHash: 2e5083ebf7fc9dd3c5aa31059f9336bec4407fffb21b93a20decb49e9cf880a4
|
||||
Stack:
|
||||
2.5.1:
|
||||
viTags:
|
||||
|
||||
Binary file not shown.
@@ -1431,5 +1431,83 @@
|
||||
"9.8.1"
|
||||
]
|
||||
}
|
||||
},
|
||||
"2.5.0.0": {
|
||||
"A_64": {
|
||||
"Darwin": [
|
||||
"9.2.8",
|
||||
"9.4.8",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"FreeBSD": [
|
||||
"9.2.8",
|
||||
"9.4.8",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Linux_CentOS": [
|
||||
"9.2.8",
|
||||
"9.4.8",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Linux_Debian": [
|
||||
"9.2.8",
|
||||
"9.4.8",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Linux_Fedora": [
|
||||
"9.2.8",
|
||||
"9.4.8",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Linux_Mint": [
|
||||
"9.2.8",
|
||||
"9.4.8",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Linux_RedHat": [
|
||||
"9.2.8",
|
||||
"9.4.8",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Linux_Ubuntu": [
|
||||
"9.2.8",
|
||||
"9.4.8",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Linux_UnknownLinux": [
|
||||
"9.2.8",
|
||||
"9.4.8",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Windows": [
|
||||
"9.2.8",
|
||||
"9.4.8",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
]
|
||||
},
|
||||
"A_ARM64": {
|
||||
"Darwin": [
|
||||
"9.2.8",
|
||||
"9.4.8",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Linux_UnknownLinux": [
|
||||
"9.2.8",
|
||||
"9.4.8",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user