Compare commits
41 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d35571f02d | |||
| 92efb732ac | |||
| 6474e0e7de | |||
| 5f1802aee7 | |||
| 7a5ffc84ff | |||
|
|
b37a8ca419 | ||
| 309dcd0344 | |||
| 16ca788725 | |||
| 86526f6015 | |||
| 1d00d31730 | |||
| c975203b5e | |||
| 5c692ab9ec | |||
| 7c1bf39704 | |||
| 673a49bcc1 | |||
| 6926df6a00 | |||
| 874f9a52f8 | |||
|
|
cb19cf7a20 | ||
|
|
59ea5163ce | ||
|
b0a026f6a0
|
|||
|
5700321a7d
|
|||
|
c58f03c71d
|
|||
|
96b1c8e3e9
|
|||
|
60a30d8522
|
|||
|
7de9fd3a8c
|
|||
|
b8606ec3b7
|
|||
|
d19cc1d0f0
|
|||
|
b703c55991
|
|||
|
8b95d10664
|
|||
|
d5c7e708d8
|
|||
|
fea14b9a06
|
|||
|
eadf9b61ba
|
|||
|
594bd5490d
|
|||
|
|
1fa98afb67 | ||
|
9a262dc451
|
|||
|
d4f085edf4
|
|||
|
9c4b70f495
|
|||
|
3e05dee7bf
|
|||
|
f8d0da5743
|
|||
|
dfe477c1b7
|
|||
|
f752a23491
|
|||
|
ad42891618
|
2
.github/workflows/bindists.yaml
vendored
2
.github/workflows/bindists.yaml
vendored
@@ -117,7 +117,7 @@ jobs:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- os: [self-hosted, Linux, ARM64, aarch32-linux]
|
||||
- os: [self-hosted, Linux, ARM64]
|
||||
ARCH: ARM
|
||||
- os: [self-hosted, Linux, ARM64]
|
||||
ARCH: ARM64
|
||||
|
||||
21
.github/workflows/install-bindist.sh
vendored
21
.github/workflows/install-bindist.sh
vendored
@@ -13,15 +13,20 @@ source "$GHCUP_INSTALL_BASE_PREFIX"/.ghcup/env || source "$HOME/.bashrc"
|
||||
ghcup --version
|
||||
which ghcup | grep foobarbaz
|
||||
|
||||
ghcup_fun() {
|
||||
ghcup -v --url-source=file:$METADATA_FILE "$@"
|
||||
}
|
||||
|
||||
case $TOOL in
|
||||
ghcup)
|
||||
ghcup -v --url-source=file:$METADATA_FILE upgrade --force
|
||||
ghcup_fun upgrade --force
|
||||
;;
|
||||
*) ghcup -v --url-source=file:$METADATA_FILE install $TOOL --set $VERSION
|
||||
*) ghcup_fun install $TOOL --set $VERSION
|
||||
;;
|
||||
esac
|
||||
|
||||
mkdir -p /tmp/install-bindist-ci
|
||||
cp "$METADATA_FILE" /tmp/install-bindist-ci/
|
||||
cd /tmp/install-bindist-ci
|
||||
|
||||
cat <<EOF > main.hs
|
||||
@@ -34,11 +39,11 @@ EOF
|
||||
|
||||
case $TOOL in
|
||||
ghcup)
|
||||
ghcup --verbose list
|
||||
ghcup_fun list
|
||||
;;
|
||||
hls)
|
||||
ghcup install cabal latest
|
||||
ghcup install ghc --set recommended
|
||||
ghcup_fun install cabal latest
|
||||
ghcup_fun install ghc --set recommended
|
||||
cabal update
|
||||
|
||||
test_package="bytestring-0.11.1.0"
|
||||
@@ -55,6 +60,7 @@ 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'
|
||||
@@ -70,12 +76,12 @@ case $TOOL in
|
||||
bin=${hls##*/}
|
||||
bin_noexe=${bin/.exe/}
|
||||
if ! [[ "${bin_noexe}" =~ "haskell-language-server-wrapper" ]] && ! [[ "${bin_noexe}" =~ "~" ]] && ! [[ "${bin_noexe}" =~ ".shim" ]] ; then
|
||||
if ghcup install ghc --set "${bin_noexe/haskell-language-server-/}" ; then
|
||||
if ghcup_fun install ghc --set "${bin_noexe/haskell-language-server-/}" ; then
|
||||
"${hls}" typecheck "${test_module}" || fail "failed to typecheck with HLS for GHC ${bin_noexe/haskell-language-server-/}"
|
||||
else
|
||||
fail "GHCup failed to install GHC ${bin_noexe/haskell-language-server-/}"
|
||||
fi
|
||||
ghcup rm ghc "${bin_noexe/haskell-language-server-/}"
|
||||
ghcup_fun rm ghc "${bin_noexe/haskell-language-server-/}"
|
||||
fi
|
||||
done
|
||||
"$bindir/haskell-language-server-wrapper${ext}" typecheck "${test_module}" || fail "failed to typecheck with HLS wrapper"
|
||||
@@ -99,6 +105,7 @@ case $TOOL in
|
||||
[[ $(./main +RTS -s) -eq 2 ]]
|
||||
;;
|
||||
cabal)
|
||||
ghcup_fun install ghc --set "$(ghcup_fun list -t ghc -r -c available | tail -1 | awk '{ print $2 }')"
|
||||
cabal --version
|
||||
cabal update
|
||||
[[ $(cabal --verbose=0 run --enable-profiling ./main.hs -- +RTS -s) -eq 2 ]]
|
||||
|
||||
9
.github/workflows/test.yaml
vendored
9
.github/workflows/test.yaml
vendored
@@ -19,7 +19,7 @@ jobs:
|
||||
cabal:
|
||||
- '3.6.2.0'
|
||||
os:
|
||||
- ubuntu-20.04
|
||||
- ubuntu-22.04
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
@@ -58,6 +58,13 @@ jobs:
|
||||
run: cabal update
|
||||
shell: bash
|
||||
|
||||
- name: Install some deps
|
||||
run: |
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
export TZ=Asia/Singapore
|
||||
sudo apt install -y libarchive-dev
|
||||
shell: bash
|
||||
|
||||
- name: Install ghcup-gen
|
||||
run: |
|
||||
cabal install --installdir="$HOME/.local/bin" --overwrite-policy=always --install-method=copy ghcup-gen
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
408
ghcup-0.0.7.yaml
408
ghcup-0.0.7.yaml
@@ -595,6 +595,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-8.4.4
|
||||
dlHash: 83a96650f5a92b1e4d7651d256d6438624342d40e780e68125033435a54cd674
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-844-64-fedora
|
||||
unknown_versioning: *ghc-844-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -797,6 +798,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-8.6.3
|
||||
dlHash: 355bd85c69933c31bbe99b4269ce719acfd0aad0b45e359ac39b9bb13996acc6
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-863-64-fedora
|
||||
unknown_versioning: *ghc-863-64-centos
|
||||
Linux_AmazonLinux:
|
||||
unknown_versioning: *ghc-863-64-centos
|
||||
@@ -928,6 +930,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-8.6.5
|
||||
dlHash: 80ab566f4411299f9e5922d60749ca80f989d697db19e03ed875619d699f0edf
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-865-64-fedora
|
||||
unknown_versioning: *ghc-865-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -1017,6 +1020,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-8.8.1
|
||||
dlHash: 6cdd34e4dbaeb801e805811f91cf43a2d5f64b22f884718ffbd3542a2f4dd14f
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-881-64-fedora
|
||||
unknown_versioning: *ghc-881-64-centos
|
||||
Linux_AmazonLinux:
|
||||
unknown_versioning: *ghc-881-64-centos
|
||||
@@ -1085,6 +1089,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-8.8.2
|
||||
dlHash: f065a017d7a38f235f186ffe32d8261a4fd39c7e945d5cde85c0984c2569db99
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-882-64-fedora
|
||||
unknown_versioning: *ghc-882-64-centos
|
||||
Linux_AmazonLinux:
|
||||
unknown_versioning: *ghc-882-64-centos
|
||||
@@ -1153,6 +1158,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-8.8.3
|
||||
dlHash: 4b2b5313f7c12b81e54efcb26705fa9e4ad5b98f2b58bfc76fb0c9ba1d55eb1f
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-883-64-fedora
|
||||
unknown_versioning: *ghc-883-64-centos
|
||||
Linux_AmazonLinux:
|
||||
unknown_versioning: *ghc-883-64-centos
|
||||
@@ -1231,6 +1237,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-8.8.4
|
||||
dlHash: a12aa4b1fd3c64240a8a6d15196d33e1c0e0d55b51ff78c387242126d0ef7910
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-884-64-fedora
|
||||
unknown_versioning: *ghc-884-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -1317,6 +1324,7 @@ ghcupDownloads:
|
||||
dlHash: 0618b94854edc6be5302489df905e627820b71be6b66c950f5e3088fe92df0a1
|
||||
unknown_versioning: *ghc-8101-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-8101-64-fedora
|
||||
unknown_versioning: *ghc-8101-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -1416,6 +1424,7 @@ ghcupDownloads:
|
||||
dlHash: fd2dccd6f496915a5f962dab24e7eeb8bee49bcc38e74b17eac76159083538fa
|
||||
unknown_versioning: *ghc-8102-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-8102-64-fedora
|
||||
unknown_versioning: *ghc-8102-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -1515,6 +1524,7 @@ ghcupDownloads:
|
||||
dlHash: f562ca61979ff1d21e34e69e59028cb742a8eff8d84e46bbd3a750f2ac7d8ed1
|
||||
unknown_versioning: *ghc-8103-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-8103-64-fedora
|
||||
unknown_versioning: *ghc-8103-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -1615,6 +1625,7 @@ ghcupDownloads:
|
||||
dlHash: fb8a91f0cf06594172aff46c2f6f7486179e1c3760855c79fbdd3012598cc2cd
|
||||
unknown_versioning: *ghc-8104-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-8104-64-fedora
|
||||
unknown_versioning: *ghc-8104-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -1720,6 +1731,7 @@ ghcupDownloads:
|
||||
dlHash: 4cdb259ec74d1408dab45dab20dcedc21690f39921c2ea4546486fb3e81f4fbd
|
||||
unknown_versioning: *ghc-8105-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-8105-64-fedora
|
||||
unknown_versioning: *ghc-8105-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -1826,6 +1838,7 @@ ghcupDownloads:
|
||||
dlHash: 71bb69b7185cbb44a941f5214b241a55e158f69b103f10214a05de7845f77e45
|
||||
unknown_versioning: *ghc-8106-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-8106-64-fedora
|
||||
unknown_versioning: *ghc-8106-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -1930,6 +1943,7 @@ ghcupDownloads:
|
||||
dlHash: 262a50bfb5b7c8770e0d99f54d42e5876968da7bf93e2e4d6cfe397891a36d05
|
||||
unknown_versioning: *ghc-8107-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-8107-64-fedora
|
||||
unknown_versioning: *ghc-8107-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -2034,6 +2048,7 @@ ghcupDownloads:
|
||||
dlHash: a23750950b6995a66ba59afe82bbc505bd3479d6ab59cf66f45bc6c056e4d87b
|
||||
unknown_versioning: *ghc-901-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-901-64-fedora
|
||||
unknown_versioning: *ghc-901-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -2132,6 +2147,7 @@ ghcupDownloads:
|
||||
dlHash: 42c78fa5ca8eb2bc7fabb8b9d7634d5b0ddd81c7fe16d8e212aeb9dac91a4f4e
|
||||
unknown_versioning: *ghc-902-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-902-64-fedora
|
||||
unknown_versioning: *ghc-902-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -2230,6 +2246,7 @@ ghcupDownloads:
|
||||
dlHash: 4b67324507f5d14c23db3ed83c57f4e25d877e97d2b93cfe8e1a9fdf65e4efa1
|
||||
unknown_versioning: *ghc-921-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-921-64-fedora
|
||||
unknown_versioning: *ghc-921-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-921-64-fedora
|
||||
@@ -2327,6 +2344,7 @@ ghcupDownloads:
|
||||
dlHash: 5100aa7dea87aaf2ed596be83c93165d7199492f6db431d874fcfa07e8ac76ab
|
||||
unknown_versioning: *ghc-922-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-922-64-fedora
|
||||
unknown_versioning: *ghc-922-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-922-64-fedora
|
||||
@@ -2419,6 +2437,7 @@ ghcupDownloads:
|
||||
dlHash: c2c9e171c205922a7c80e4b43e0432ebdb857076453f969dfda3ba9844aa5f5d
|
||||
unknown_versioning: *ghc-923-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-923-64-fedora
|
||||
unknown_versioning: *ghc-923-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-923-64-fedora
|
||||
@@ -2469,6 +2488,7 @@ ghcupDownloads:
|
||||
9.2.4:
|
||||
viTags:
|
||||
- base-4.16.3.0
|
||||
- old
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.2.4/docs/html/users_guide/index.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.4/ghc-9.2.4-src.tar.xz
|
||||
@@ -2509,6 +2529,7 @@ ghcupDownloads:
|
||||
dlHash: 540d3a8ddcf6175efeeec54a73893526a6acf464825f7d3d7a396158fc3f6928
|
||||
unknown_versioning: *ghc-924-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-924-64-fedora
|
||||
unknown_versioning: *ghc-924-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-924-64-fedora
|
||||
@@ -2559,7 +2580,7 @@ ghcupDownloads:
|
||||
9.2.5:
|
||||
viTags:
|
||||
- base-4.16.4.0
|
||||
- Recommended
|
||||
- old
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.2.5/docs/html/users_guide/index.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.5/ghc-9.2.5-src.tar.xz
|
||||
@@ -2600,6 +2621,7 @@ ghcupDownloads:
|
||||
dlHash: 07c02710ac691a15c4b62e097b98862179fef21fb0bd3bd1e737eaed5831d2fa
|
||||
unknown_versioning: *ghc-925-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-925-64-fedora
|
||||
unknown_versioning: *ghc-925-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-925-64-fedora
|
||||
@@ -2650,6 +2672,7 @@ ghcupDownloads:
|
||||
9.2.6:
|
||||
viTags:
|
||||
- base-4.16.4.0
|
||||
- old
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.2.6/docs/html/users_guide/index.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.6/ghc-9.2.6-src.tar.xz
|
||||
@@ -2688,6 +2711,7 @@ ghcupDownloads:
|
||||
dlHash: b7334f002e56588129a04a43559901fcd875b95c194a8bee5fa5f498ea002219
|
||||
unknown_versioning: *ghc-926-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-926-64-fedora
|
||||
unknown_versioning: *ghc-926-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-926-64-fedora
|
||||
@@ -2738,6 +2762,7 @@ ghcupDownloads:
|
||||
9.2.7:
|
||||
viTags:
|
||||
- base-4.16.4.0
|
||||
- Recommended
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.2.7/docs/html/users_guide/index.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-src.tar.xz
|
||||
@@ -2776,6 +2801,7 @@ ghcupDownloads:
|
||||
dlHash: b4db141559b9e9df18ead9647447016ea29d55e306ab6eb4a612ef2493ef8871
|
||||
unknown_versioning: *ghc-927-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-927-64-fedora
|
||||
unknown_versioning: *ghc-927-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-927-64-fedora
|
||||
@@ -2871,6 +2897,7 @@ ghcupDownloads:
|
||||
dlHash: efe05368d6367ce9109c7607a0945d85273cc95a730dd17f23d8ae79ee3524ea
|
||||
unknown_versioning: *ghc-941-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-941-64-deb10
|
||||
unknown_versioning: *ghc-941-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-941-64-fedora
|
||||
@@ -2916,6 +2943,7 @@ ghcupDownloads:
|
||||
9.4.2:
|
||||
viTags:
|
||||
- base-4.17.0.0
|
||||
- old
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.4.2/docs/users_guide/9.4.2-notes.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.2/ghc-9.4.2-src.tar.xz
|
||||
@@ -2960,6 +2988,7 @@ ghcupDownloads:
|
||||
dlHash: 017bbf5ba0d526ec82ac97a2ea2a177f162424ea970cd5d6279b843b3d799668
|
||||
unknown_versioning: *ghc-942-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-942-64-deb10
|
||||
unknown_versioning: *ghc-942-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-942-64-fedora
|
||||
@@ -3005,6 +3034,7 @@ ghcupDownloads:
|
||||
9.4.3:
|
||||
viTags:
|
||||
- base-4.17.0.0
|
||||
- old
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.4.3/docs/users_guide/9.4.3-notes.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.3/ghc-9.4.3-src.tar.xz
|
||||
@@ -3049,6 +3079,7 @@ ghcupDownloads:
|
||||
dlHash: 50037bc8672f0429e2de1255b21f04529807182cf74887a60e4d416d3b6ce8f2
|
||||
unknown_versioning: *ghc-943-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-943-64-deb10
|
||||
unknown_versioning: *ghc-943-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-943-64-fedora
|
||||
@@ -3093,7 +3124,6 @@ ghcupDownloads:
|
||||
dlHash: 531c0a4708655bc8707ba88b8a72d34b5958fddc519a12359613f6db62f0eb82
|
||||
9.4.4:
|
||||
viTags:
|
||||
- Latest
|
||||
- base-4.17.0.0
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.4.4/docs/users_guide/9.4.4-notes.html
|
||||
viSourceDL:
|
||||
@@ -3139,9 +3169,15 @@ ghcupDownloads:
|
||||
dlHash: 8d6dee632966123ec901660cd155dfdc3aa3f13116574215d958a4705b8327e1
|
||||
unknown_versioning: *ghc-944-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-944-64-deb10
|
||||
unknown_versioning: *ghc-944-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-944-64-fedora
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/ghcup/unofficial-bindists/ghc/9.4.4/ghc-9.4.4-x86_64-portbld-freebsd.tar.xz
|
||||
dlSubdir: ghc-9.4.4-x86_64-portbld-freebsd
|
||||
dlHash: 42eba2c1eb0b7a420a79ee3f3bb1f649926ea78ca8fee176491c087aa48ea7ef
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.4/ghc-9.4.4-x86_64-apple-darwin.tar.xz
|
||||
@@ -3181,6 +3217,205 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.4/ghc-9.4.4-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.4.4-aarch64-apple-darwin
|
||||
dlHash: b50507b229e0c418b32e4b6cc060288ba9497fdd912962e3b0707d0a2b003658
|
||||
9.4.5:
|
||||
viTags:
|
||||
- base-4.17.1.0
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.4.5/docs/users_guide/9.4.5-notes.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-src.tar.xz
|
||||
dlSubdir: ghc-9.4.5
|
||||
dlHash: 6256cf9caf6d6dc7b611dcfbb247df2d528e85aa39d22a698e870e5a590e8601
|
||||
viTestDL:
|
||||
dlUri: https://downloads.haskell.org/ghc/9.4.5/ghc-9.4.5-testsuite.tar.xz
|
||||
dlSubdir: ghc-9.4.5/testsuite
|
||||
dlHash: 97d6dd8c889a1114e5038dec4b66e875cce157a2855a9a60bfdbcde804cf4573
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-945-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-deb9-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-linux
|
||||
dlHash: 7508314c884c69738e93eb69b919d965e83c444830ae53c5991818f8414634be
|
||||
'(>= 10 && < 11)': &ghc-945-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-deb10-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-linux
|
||||
dlHash: a44c39c4cc9a147de6dd31762995a9e47467cc91757800d80667b8cd60a9b226
|
||||
'>= 11': &ghc-945-64-deb11
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-deb11-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-linux
|
||||
dlHash: 561ccb6b155672f5077fd79daf13a862710049202c7448ce82ee2ee1d9063bc7
|
||||
unknown_versioning: *ghc-945-64-deb11
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-945-64-deb10
|
||||
'( >= 16 && < 19 )': *ghc-945-64-deb9
|
||||
Linux_Mint:
|
||||
'< 20': *ghc-945-64-deb9
|
||||
'>= 20': *ghc-945-64-deb10
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &ghc-945-64-centos
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-centos7-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-linux
|
||||
dlHash: d9cacea4a948bd03c03ee432c33a71304d1a5db6657ee613f2a83088581321be
|
||||
unknown_versioning: *ghc-945-64-centos
|
||||
Linux_Fedora:
|
||||
'( >= 27 && < 33 )': &ghc-945-64-fedora-27
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-fedora27-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-linux
|
||||
dlHash: ba10e15d8f20ff5451f2dbfee0601210dbbacc63de1bdcef8d2d91763fde84ea
|
||||
'>= 33': &ghc-945-64-fedora-33
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-fedora33-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-linux
|
||||
dlHash: 3cf52bc88ec212d0aed3bbcc1f3e54c61cc639975f90302b44b3f4d1eee3f153
|
||||
unknown_versioning: *ghc-945-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-945-64-fedora-27
|
||||
unknown_versioning: *ghc-945-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-945-64-fedora-27
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-apple-darwin
|
||||
dlHash: f8cf9bb725120c25fac909834c79786ac646c97dc3cd69a1ef0b734b489d6709
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-unknown-mingw32.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-mingw32
|
||||
dlHash: 1b65ccb99b5e0bc6ad535b58323b023c61a675e0c3a0d53b82f819e55a7dd8d7
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-alpine3_12-linux-static-int_native.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-linux
|
||||
dlHash: fd5fd84e75909baf952f26287ce2396d664dbfca251f0696ae7f31a868b59520
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-945-32-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-i386-deb9-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-i386-unknown-linux
|
||||
dlHash: 74a940f8afb4332f5eb0cde6aa6def8c8aae8c8632b05884a226434c86a644ec
|
||||
unknown_versioning: *ghc-945-32-deb9
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-945-32-deb9
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc-945-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-945-32-deb9
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-aarch64-deb10-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-aarch64-unknown-linux
|
||||
dlHash: ecf16ec503e739e727174b29e5acbe4cf0c54737dd4d5eda046e09323f9ee248
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.4.5-aarch64-apple-darwin
|
||||
dlHash: edd28a261f4d608be59000fb4c4a4d37b2cc825e6d46aded6612661de7d066a0
|
||||
9.6.1:
|
||||
viArch:
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
<10: &ghc-961-32-deb9
|
||||
dlHash: 5c0a14ec107a99aa084e18cb595cc2d445d6c2fdc5365bbf3b82248205638a85
|
||||
dlSubdir: ghc-9.6.1-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-i386-deb9-linux.tar.xz
|
||||
unknown_versioning: *ghc-961-32-deb9
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc-961-32-deb9
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-961-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-961-32-deb9
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: 3dcca5e83795b5b7c0af636216dc2ef9c40c70fb368bc7feb2a74921c81445ff
|
||||
dlSubdir: ghc-9.6.1-x86_64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-apple-darwin.tar.xz
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: d2eac4b74b57ad5840cd7f4c7ee2fe11ede74679b71b66a4e784c02eaa059d7f
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-alpine3_12-linux-static-int_native.tar.xz
|
||||
Linux_CentOS:
|
||||
( >= 7 && < 8 ): &ghc-961-64-centos7
|
||||
dlHash: c7fb1b5acd69cf0b940bcd4548b423cd5d7ca219f244cee6807fe307e0f08c4e
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-centos7-linux.tar.xz
|
||||
unknown_versioning: *ghc-961-64-centos7
|
||||
Linux_Debian:
|
||||
(>= 10 && < 11):
|
||||
dlHash: 48d533c88ba2d852c50eaf98859a7779844512d05577f1ced17cc68cc63f4d03
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-deb10-linux.tar.xz
|
||||
< 10:
|
||||
dlHash: 3c727e93a82ff039fbedd6645518859849130a0fc93b7181cd69a41800aa639c
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-deb9-linux.tar.xz
|
||||
'>= 11': &ghc-961-64-deb11
|
||||
dlHash: 73222632a1154fd2e54c6920609cb68ddee2915675f04d74b08b24f9cc492ee6
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-deb11-linux.tar.xz
|
||||
unknown_versioning: *ghc-961-64-deb11
|
||||
Linux_Fedora:
|
||||
'>= 33':
|
||||
dlHash: 5405b5fd66ab30e19c69bfb0eb27ac62069ee2d5af9d413ece835b8ad1e3c15d
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-fedora33-linux.tar.xz
|
||||
unknown_versioning: *ghc-961-64-centos7
|
||||
Linux_Mint:
|
||||
< 20: &ghc-961-64-ubuntu1804
|
||||
dlHash: 5c9dd525e2cc8a1aed75dbf0676ab51fbcf555960fca9734cbd0a39d0850f64d
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-ubuntu18_04-linux.tar.xz
|
||||
'>= 20': &ghc-961-64-ubuntu2004
|
||||
dlHash: 95cfd9d1144eb14a01b43474c2ebfe8a50373a8d8ea53ebac461d4fa4878e4ed
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-ubuntu20_04-linux.tar.xz
|
||||
Linux_RedHat:
|
||||
'>= 8': &ghc-961-64-rocky8
|
||||
dlHash: 97172efe434bfe27c112f16b3ab3708c1fb3defb5c1d1319c738c7afea95901d
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-rocky8-linux.tar.xz
|
||||
unknown_versioning: *ghc-961-64-centos7
|
||||
Linux_Ubuntu:
|
||||
( >= 16 && < 19 ): *ghc-961-64-ubuntu1804
|
||||
unknown_versioning: *ghc-961-64-ubuntu2004
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-961-64-rocky8
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlHash: 6121a889839d8b409f082169365bbfb6ed9e6a1f6ff0531d577ef7c2a9a417fb
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-mingw32
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-unknown-mingw32.tar.xz
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlHash: 2ac55172f49092de7917adb7950edfacc97f43652edc16851d2b25d67813c1af
|
||||
dlSubdir: ghc-9.6.1-x86_64-portbld-freebsd
|
||||
dlUri: https://downloads.haskell.org/ghcup/unofficial-bindists/ghc/9.6.1/ghc-9.6.1-x86_64-portbld-freebsd-gmp-native.tar.xz
|
||||
A_ARM64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: 1729e8cec960879c620917d935a673e54197fa2ee87c62e45c44fad2e522960a
|
||||
dlSubdir: ghc-9.6.1-aarch64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-aarch64-apple-darwin.tar.xz
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: 0fd57fdc9e7b9c0850350492deea1c00016d751c89c11478cfe6b6038da0c6db
|
||||
dlSubdir: ghc-9.6.1-aarch64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-aarch64-deb10-linux.tar.xz
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.6.1/docs/users_guide/9.6.1-notes.html
|
||||
viSourceDL:
|
||||
dlHash: fe5ac909cb8bb087e235de97fa63aff47a8ae650efaa37a2140f4780e21f34cb
|
||||
dlSubdir: ghc-9.6.1
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-src.tar.xz
|
||||
viTags:
|
||||
- Latest
|
||||
- base-4.18.0.0
|
||||
viTestDL:
|
||||
dlHash: 8bfa74d102da570cb87fbbc3465c7f778a4e6dc76606fef80207de7e8b64114f
|
||||
dlSubdir: ghc-9.6.1
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-testsuite.tar.xz
|
||||
Cabal:
|
||||
2.4.1.0:
|
||||
viTags:
|
||||
@@ -3492,8 +3727,7 @@ 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.8.1.0:
|
||||
viTags:
|
||||
- Latest
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.8.1.0.md
|
||||
viArch:
|
||||
A_64:
|
||||
@@ -3537,6 +3771,51 @@ ghcupDownloads:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.8.1.0/armv7-linux-cabal-3.8.1.0.tar.xz
|
||||
dlHash: 836d89aa1c98a3a848b8b691f9b99123f260dcd4cc1163cb77435a31559475fe
|
||||
3.10.1.0:
|
||||
viTags:
|
||||
- Latest
|
||||
viChangeLog: https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.10.1.0.md
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-31010-64
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.10.1.0/cabal-install-3.10.1.0-x86_64-linux-alpine.tar.xz
|
||||
dlHash: 187fa3d6e69bd8647aea121e469a1c8e4688a704ab88df54e9547c571e1cdd99
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *cabal-31010-64
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.10.1.0/cabal-install-3.10.1.0-x86_64-darwin.tar.xz
|
||||
dlHash: 893a316bd634cbcd08861306efdee86f66ec634f9562a8c59dc616f7e2e14ffa
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.10.1.0/cabal-install-3.10.1.0-x86_64-windows.zip
|
||||
dlHash: 31ca1cd173d4da675bc9790746d6b492cbe204e0332b282141d7ecc8ae43997b
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.1.0/cabal-install-3.10.1.0-x86_64-freebsd12.tar.xz
|
||||
dlHash: 135334d4fd6fb6c6afcef17bb54d9c417629ab3f9463814ef9f97e71f3055d90
|
||||
A_32:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-31010-32
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.10.1.0/cabal-install-3.10.1.0-i386-linux-deb9.tar.xz
|
||||
dlHash: 3c4a43a3ac1ef80e66953c2a8f83bb51298c21aeb7328ce06534600a7259a866
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *cabal-31010-32
|
||||
A_ARM64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.10.1.0/cabal-install-3.10.1.0-aarch64-darwin.tar.xz
|
||||
dlHash: fdabdc4dca42688a97f2b837165af42fcfd4c111d42ddb0d4df7bbebd5c8750e
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.1.0/cabal-install-3.10.1.0-aarch64-linux-deb10.tar.xz
|
||||
dlHash: e2eb5f4aa574266374be4ee06e67c10447794e1fca7ca7e6dc0e17f77a635553
|
||||
A_ARM:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.1.0/cabal-install-3.10.1.0-armv7-linux-deb10.tar.xz
|
||||
dlHash: 13d5019182b17ca5436b4249243cf2cb88203da1f34c2a7dd0e564bd34c7e80a
|
||||
GHCup:
|
||||
0.1.19.2:
|
||||
viTags:
|
||||
@@ -3557,7 +3836,7 @@ ghcupDownloads:
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/x86_64-portbld-freebsd-ghcup-0.1.19.2
|
||||
dlHash: 5b702adb306e4823ff5ceb3bb9e0ae1e4a9f2ecd9d1ed8b9689c5aaf8e7170e2
|
||||
dlHash: 7f12d65d71246542d29e4786fcbc6bc63d0251e3f3825e63376f8e65ff572023
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/x86_64-mingw64-ghcup-0.1.19.2.exe
|
||||
@@ -3575,7 +3854,7 @@ ghcupDownloads:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/aarch64-linux-ghcup-0.1.19.2
|
||||
dlHash: 7ab3606f3de49c363444dd5879edde27a3e7df0adbd981a8c12a153861fde271
|
||||
dlHash: 68193e1ef04398b4ef23619abafdde406a22221fbb45eac81214c1fdffdf00ef
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/aarch64-apple-darwin-ghcup-0.1.19.2
|
||||
@@ -3584,7 +3863,7 @@ ghcupDownloads:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/armv7-linux-ghcup-0.1.19.2
|
||||
dlHash: a18b6723ef0ee143f69c8d6657e1b749ac61938f81a7413656349c9fda3c7021
|
||||
dlHash: 9d5e17b5d5436429401d9349c4da3257a0721e084db8b47048cd9a07d2741624
|
||||
HLS:
|
||||
1.1.0:
|
||||
viTags:
|
||||
@@ -3880,7 +4159,8 @@ ghcupDownloads:
|
||||
dlUri: https://github.com/haskell/haskell-language-server/releases/download/1.6.1.0/haskell-language-server-Linux-armv7-1.6.1.0.tar.xz
|
||||
dlHash: ea174e82678c25a017ff564c5329a80dc18030139b9bfcad2da8fe888617446b
|
||||
1.7.0.0:
|
||||
viTags: []
|
||||
viTags:
|
||||
- old
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md#1700
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
@@ -3942,7 +4222,8 @@ ghcupDownloads:
|
||||
dlSubdir: haskell-language-server-1.7.0.0
|
||||
dlHash: d82030533f69b862cc6149d7a9b32dfa81fc6a803cb089c59f00ef94efcce3bb
|
||||
1.8.0.0:
|
||||
viTags: []
|
||||
viTags:
|
||||
- old
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md#1800
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
@@ -4011,7 +4292,7 @@ ghcupDownloads:
|
||||
dlHash: 89baeb96588e05785d1e75687ea220c03ceb8a513e5b28ee042f2ed5acb448b8
|
||||
1.9.0.0:
|
||||
viTags:
|
||||
- Recommended
|
||||
- old
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
@@ -4079,8 +4360,7 @@ ghcupDownloads:
|
||||
dlSubdir: haskell-language-server-1.9.0.0
|
||||
dlHash: 4524c9e700a0a91670976f089dc2d7ed0d970420e93faf9ca1ad1246ec348011
|
||||
1.9.1.0:
|
||||
viTags:
|
||||
- Latest
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
@@ -4170,6 +4450,102 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.9.1.0/haskell-language-server-1.9.1.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-1.9.1.0
|
||||
dlHash: 5cbcfa0903bd776168a11c8ec437e8231699cd701d7b44496e9a2a3766fa08e9
|
||||
1.10.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-1.10.0.0/haskell-language-server-1.10.0.0-src.tar.gz
|
||||
dlSubdir: haskell-language-server-1.10.0.0-wip
|
||||
dlHash: dc73a89b43ed7f5f1823220a6873a6f5033d6140dde847526599b9fb41b2ed08
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
'< 10': &hls-1100-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-deb9.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 88ae4573e54d053e4f60eed47715b6d3e8d92ad4c66b1499902623ffcc780c1a
|
||||
'(>= 10 && < 11)': &hls-1100-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-deb10.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 39de32e533993f9918822a1b6e370f618f60ec42aa84f10293d563571f0a6c97
|
||||
unknown_versioning: &hls-1100-64-deb11
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-deb11.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 41cc2665933005c7821fb18bac8cfaeb28b1ac588e297199df63fcd34e8ce84d
|
||||
Linux_Ubuntu:
|
||||
'( >= 16 && < 19 )': &hls-1100-64-ubuntu18
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-ubuntu18.04.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 189bc3d2c1493b5e1fbf49c176c92136ce1e91dd449fbf2ebc044a0292869f38
|
||||
'( >= 20 && < 22 )': &hls-1100-64-ubuntu20
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-ubuntu20.04.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: c33f6a5bdc3f1bbc44a2db16c9330912b3ace2127007b6e19d8422c70dff3e4e
|
||||
unknown_versioning: &hls-1100-64-ubuntu22
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-ubuntu22.04.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 54634827b11dad41d234b1b138d3c20752aa16e4368d285f2f1ceec373ccf7a7
|
||||
Linux_Mint:
|
||||
'< 20':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-mint19.3.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 46dfed0a072a0b03b44052c3dd13c6e71d12d35e0fe7d3f032f55e04c0ebcddc
|
||||
'(>= 20 && < 21)':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-mint20.2.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 0858611d2f1b3fa6973b116a49fab6e713c93e6a7c966af1ca3c5be164af289f
|
||||
'>= 21': *hls-1100-64-ubuntu22
|
||||
Linux_Fedora:
|
||||
'< 33': &hls-1100-64-fedora27
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-fedora27.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: d9355647337122d4d51043b366d5ff498115ff86cba0f50580e158d7e4050451
|
||||
'>= 33': &hls-1100-64-fedora33
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-fedora33.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 44ee43b066662fdec41f72af0d0da74cd8d5444f0b1fefa42c4890b0b812cef4
|
||||
unknown_versioning: *hls-1100-64-fedora27
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &hls-1100-64-centos
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-centos7.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 873d20a068398a52671f710f4fb06736f109752c03c2177950887125ccde18ca
|
||||
unknown_versioning: *hls-1100-64-centos
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *hls-1100-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-unknown.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: b3cb7673dcff1fc39a2465b24fd744756331fd3cd48aed57bfbe66d274644cf6
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 66290c1368c2d65043779ad46b88ac271564f50d606f6e559e64ec26107a58a6
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-mingw64.zip
|
||||
dlHash: 25e84ee35d7376b1e3b2ddb68808eaba77462d7d0fa2a849bf65dcde1265274e
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-freebsd.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 843455de47a2e212b6cd2f06bf9530eeaae0e62c4ef8ba2b4115773b34fc34a1
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-aarch64-linux-ubuntu20.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: f5e3b11e121c988905542450a3d9df18fb5ff38386862d3bffd4b5c3935d01dc
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: d2f46ec1ce923b74b575f8926f9b0992ab0f3ab8fa5d45590c641316f1e901af
|
||||
Stack:
|
||||
2.5.1:
|
||||
viTags:
|
||||
@@ -4334,8 +4710,7 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/ghcup/unofficial-bindists/stack/2.7.5/stack-2.7.5-linux-armv7.tar.gz
|
||||
dlHash: 8be2342deea5309a32e28a0c5eb341ea9557401f08484676036471250ca12e21
|
||||
2.9.1:
|
||||
viTags:
|
||||
- Recommended
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v291
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
@@ -4384,6 +4759,7 @@ ghcupDownloads:
|
||||
2.9.3:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v293
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
@@ -4406,6 +4782,10 @@ ghcupDownloads:
|
||||
dlHash: 816be0ce817f74c18074b1a496b4ac9ea0b22b7745d9a7bf77c19161e251e8ad
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/ghcup/unofficial-bindists/stack/2.9.3/stack-2.9.3-freebsd-x86_64.tar.xz
|
||||
dlHash: b1184820aa42f15188c2dc14d4566195f9ecc71f191dde7643caff84e027a80b
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *stack-293-64
|
||||
A_32:
|
||||
|
||||
Binary file not shown.
@@ -735,9 +735,109 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-9.6.0.20230210
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-testsuite.tar.xz
|
||||
viTags:
|
||||
- LatestPrerelease
|
||||
- Prerelease
|
||||
- base-4.18.0.0
|
||||
|
||||
9.6.0.20230302:
|
||||
viArch:
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
<10: &ghc-961rc1-32-debian10
|
||||
dlHash: a4a0df9b980da59aaf4d121bddad20e750b17d45f90e8c5cdaa3fd94479087ea
|
||||
dlSubdir: ghc-9.6.0.20230302-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230302/ghc-9.6.0.20230302-i386-deb9-linux.tar.xz
|
||||
unknown_versioning: *ghc-961rc1-32-debian10
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc-961rc1-32-debian10
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-961rc1-32-debian10
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-961rc1-32-debian10
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: 8a291d92b470d412ba531b485b8a7692780334ae7690a3257f666d04ca374733
|
||||
dlSubdir: ghc-9.6.0.20230302-x86_64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230302/ghc-9.6.0.20230302-x86_64-apple-darwin.tar.xz
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: abb24cbd934333d660221ec872c3f11acbd295607c3b6183266fce9fe3158fb0
|
||||
dlSubdir: ghc-9.6.0.20230302-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230302/ghc-9.6.0.20230302-x86_64-alpine3_12-linux-static-int_native.tar.xz
|
||||
Linux_CentOS:
|
||||
( >= 7 && < 8 ): &ghc-961rc1-64-centos7
|
||||
dlHash: 76b0921881427e49fc0fe9460ca67b6df4236e33b1a64cca88b06f2f0510ffd1
|
||||
dlSubdir: ghc-9.6.0.20230302-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230302/ghc-9.6.0.20230302-x86_64-centos7-linux.tar.xz
|
||||
unknown_versioning: *ghc-961rc1-64-centos7
|
||||
Linux_Debian:
|
||||
(>= 10 && < 11):
|
||||
dlHash: fd7834d8d2615be2620cf657ff3d37fd6d699aaa96175e3e984e50c84414ffa1
|
||||
dlSubdir: ghc-9.6.0.20230302-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230302/ghc-9.6.0.20230302-x86_64-deb10-linux.tar.xz
|
||||
< 10:
|
||||
dlHash: 4aa4ba419265b790277acf8c6169e694d8b419077ed281e65d3461a2a2eafd00
|
||||
dlSubdir: ghc-9.6.0.20230302-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230302/ghc-9.6.0.20230302-x86_64-deb9-linux.tar.xz
|
||||
'>= 11': &ghc-961rc1-64-debian11
|
||||
dlHash: 5137596a6956b779f2e1a9e05cde9dd00b9d68944d2f818f6a95d489dc62d248
|
||||
dlSubdir: ghc-9.6.0.20230302-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230302/ghc-9.6.0.20230302-x86_64-deb11-linux.tar.xz
|
||||
unknown_versioning: *ghc-961rc1-64-debian11
|
||||
Linux_Fedora:
|
||||
'>= 33':
|
||||
dlHash: dd4b1eff940fb2e3b2203b1a6e3e32182fcff9f32c5dfaa9675d72665fac82b4
|
||||
dlSubdir: ghc-9.6.0.20230302-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230302/ghc-9.6.0.20230302-x86_64-fedora33-linux.tar.xz
|
||||
unknown_versioning: *ghc-961rc1-64-centos7
|
||||
Linux_Mint:
|
||||
< 20: &ghc-961rc1-64-ubuntu1804
|
||||
dlHash: 5ea801852c74ecc41dda80f574eaa00f059adac502e6e8c611abc5f6606c7237
|
||||
dlSubdir: ghc-9.6.0.20230302-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230302/ghc-9.6.0.20230302-x86_64-ubuntu18_04-linux.tar.xz
|
||||
'>= 20': &ghc-961rc1-64-ubuntu2004
|
||||
dlHash: 7004f93625c649eed1b44ede3530ccbab3baaaca5cd2f597cfd31051a2615510
|
||||
dlSubdir: ghc-9.6.0.20230302-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230302/ghc-9.6.0.20230302-x86_64-ubuntu20_04-linux.tar.xz
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *ghc-961rc1-64-centos7
|
||||
Linux_Ubuntu:
|
||||
( >= 16 && < 19 ): *ghc-961rc1-64-ubuntu1804
|
||||
unknown_versioning: *ghc-961rc1-64-ubuntu2004
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: 326397dfa23eee2698dd2491dd57ea5fc3de398cb979d7ed88058eb92d54c730
|
||||
dlSubdir: ghc-9.6.0.20230302-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230302/ghc-9.6.0.20230302-x86_64-rocky8-linux.tar.xz
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlHash: 8b669a2ce7f36732aeedcaa9189f8aa9e57c61a0ecc59b3a96d7d4652e23e810
|
||||
dlSubdir: ghc-9.6.0.20230302-x86_64-unknown-mingw32
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230302/ghc-9.6.0.20230302-x86_64-unknown-mingw32.tar.xz
|
||||
A_ARM64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: ad1c63895bff6fd6e4c206271c481e388f417f086d22172c57b0514e104c2bbc
|
||||
dlSubdir: ghc-9.6.0.20230302-aarch64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230302/ghc-9.6.0.20230302-aarch64-apple-darwin.tar.xz
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: 45ad27a9d03cb364b9d55da1e96e3b5da8f1f6ad3b472f94df6ec9c9c8621099
|
||||
dlSubdir: ghc-9.6.0.20230302-aarch64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230302/ghc-9.6.0.20230302-aarch64-deb10-linux.tar.xz
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.6.0.20230302/docs/users_guide/9.6.1-notes.html
|
||||
viSourceDL:
|
||||
dlHash: 5658ff1357a82ffecf52c602b1aade4c63d1184bcbcd8b633dcc6c61a4a636f3
|
||||
dlSubdir: ghc-9.6.0.20230302
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230302/ghc-9.6.0.20230302-src.tar.xz
|
||||
viTags:
|
||||
- base-4.18.0.0
|
||||
- LatestPrerelease
|
||||
viTestDL:
|
||||
dlHash: 50950baf5bee33eb59c0d55913f283fd55d0c739a5bfed4badc42aa094e15f03
|
||||
dlSubdir: ghc-9.6.0.20230302
|
||||
dlUri: https://downloads.haskell.org/ghc/9.6.0.20230302/ghc-9.6.0.20230302-testsuite.tar.xz
|
||||
|
||||
Stack:
|
||||
2.9.2.1:
|
||||
viTags:
|
||||
|
||||
Binary file not shown.
@@ -575,6 +575,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-8.4.4
|
||||
dlHash: 83a96650f5a92b1e4d7651d256d6438624342d40e780e68125033435a54cd674
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-844-64-fedora
|
||||
unknown_versioning: *ghc-844-64-centos
|
||||
Linux_AmazonLinux:
|
||||
unknown_versioning: *ghc-844-64-centos
|
||||
@@ -767,6 +768,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-8.6.3
|
||||
dlHash: 355bd85c69933c31bbe99b4269ce719acfd0aad0b45e359ac39b9bb13996acc6
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-863-64-fedora
|
||||
unknown_versioning: *ghc-863-64-centos
|
||||
Linux_AmazonLinux:
|
||||
unknown_versioning: *ghc-863-64-centos
|
||||
@@ -898,6 +900,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-8.6.5
|
||||
dlHash: 80ab566f4411299f9e5922d60749ca80f989d697db19e03ed875619d699f0edf
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-865-64-fedora
|
||||
unknown_versioning: *ghc-865-64-centos
|
||||
Linux_AmazonLinux:
|
||||
unknown_versioning: *ghc-865-64-centos
|
||||
@@ -972,6 +975,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-8.8.1
|
||||
dlHash: 6cdd34e4dbaeb801e805811f91cf43a2d5f64b22f884718ffbd3542a2f4dd14f
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-881-64-fedora
|
||||
unknown_versioning: *ghc-881-64-centos
|
||||
Linux_AmazonLinux:
|
||||
unknown_versioning: *ghc-881-64-centos
|
||||
@@ -1040,6 +1044,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-8.8.2
|
||||
dlHash: f065a017d7a38f235f186ffe32d8261a4fd39c7e945d5cde85c0984c2569db99
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-882-64-fedora
|
||||
unknown_versioning: *ghc-882-64-centos
|
||||
Linux_AmazonLinux:
|
||||
unknown_versioning: *ghc-882-64-centos
|
||||
@@ -1108,6 +1113,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-8.8.3
|
||||
dlHash: 4b2b5313f7c12b81e54efcb26705fa9e4ad5b98f2b58bfc76fb0c9ba1d55eb1f
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-883-64-fedora
|
||||
unknown_versioning: *ghc-883-64-centos
|
||||
Linux_AmazonLinux:
|
||||
unknown_versioning: *ghc-883-64-centos
|
||||
@@ -1181,6 +1187,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-8.8.4
|
||||
dlHash: a12aa4b1fd3c64240a8a6d15196d33e1c0e0d55b51ff78c387242126d0ef7910
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-884-64-fedora
|
||||
unknown_versioning: *ghc-884-64-centos
|
||||
Linux_AmazonLinux:
|
||||
unknown_versioning: *ghc-884-64-centos
|
||||
@@ -1252,6 +1259,7 @@ ghcupDownloads:
|
||||
dlHash: 0618b94854edc6be5302489df905e627820b71be6b66c950f5e3088fe92df0a1
|
||||
unknown_versioning: *ghc-8101-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-8101-64-fedora
|
||||
unknown_versioning: *ghc-8101-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -1341,6 +1349,7 @@ ghcupDownloads:
|
||||
dlHash: fd2dccd6f496915a5f962dab24e7eeb8bee49bcc38e74b17eac76159083538fa
|
||||
unknown_versioning: *ghc-8102-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-8102-64-fedora
|
||||
unknown_versioning: *ghc-8102-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -1435,6 +1444,7 @@ ghcupDownloads:
|
||||
dlHash: f562ca61979ff1d21e34e69e59028cb742a8eff8d84e46bbd3a750f2ac7d8ed1
|
||||
unknown_versioning: *ghc-8103-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-8103-64-fedora
|
||||
unknown_versioning: *ghc-8103-64-centos
|
||||
Linux_AmazonLinux:
|
||||
unknown_versioning: *ghc-8103-64-centos
|
||||
@@ -1525,6 +1535,7 @@ ghcupDownloads:
|
||||
dlHash: fb8a91f0cf06594172aff46c2f6f7486179e1c3760855c79fbdd3012598cc2cd
|
||||
unknown_versioning: *ghc-8104-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-8104-64-fedora
|
||||
unknown_versioning: *ghc-8104-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -1625,6 +1636,7 @@ ghcupDownloads:
|
||||
dlHash: 4cdb259ec74d1408dab45dab20dcedc21690f39921c2ea4546486fb3e81f4fbd
|
||||
unknown_versioning: *ghc-8105-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-8105-64-fedora
|
||||
unknown_versioning: *ghc-8105-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -1721,6 +1733,7 @@ ghcupDownloads:
|
||||
dlHash: 71bb69b7185cbb44a941f5214b241a55e158f69b103f10214a05de7845f77e45
|
||||
unknown_versioning: *ghc-8106-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-8106-64-fedora
|
||||
unknown_versioning: *ghc-8106-64-centos
|
||||
Linux_AmazonLinux:
|
||||
unknown_versioning: *ghc-8106-64-centos
|
||||
@@ -1815,6 +1828,7 @@ ghcupDownloads:
|
||||
dlHash: 262a50bfb5b7c8770e0d99f54d42e5876968da7bf93e2e4d6cfe397891a36d05
|
||||
unknown_versioning: *ghc-8107-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-8107-64-fedora
|
||||
unknown_versioning: *ghc-8107-64-centos
|
||||
Linux_AmazonLinux:
|
||||
unknown_versioning: *ghc-8107-64-centos
|
||||
@@ -1909,6 +1923,7 @@ ghcupDownloads:
|
||||
dlHash: a23750950b6995a66ba59afe82bbc505bd3479d6ab59cf66f45bc6c056e4d87b
|
||||
unknown_versioning: *ghc-901-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-901-64-fedora
|
||||
unknown_versioning: *ghc-901-64-centos
|
||||
Linux_AmazonLinux:
|
||||
unknown_versioning: *ghc-901-64-centos
|
||||
@@ -1997,6 +2012,7 @@ ghcupDownloads:
|
||||
dlHash: 42c78fa5ca8eb2bc7fabb8b9d7634d5b0ddd81c7fe16d8e212aeb9dac91a4f4e
|
||||
unknown_versioning: *ghc-902-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-902-64-fedora
|
||||
unknown_versioning: *ghc-902-64-centos
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
@@ -2090,6 +2106,7 @@ ghcupDownloads:
|
||||
dlHash: 4b67324507f5d14c23db3ed83c57f4e25d877e97d2b93cfe8e1a9fdf65e4efa1
|
||||
unknown_versioning: *ghc-921-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-921-64-fedora
|
||||
unknown_versioning: *ghc-921-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-921-64-fedora
|
||||
@@ -2182,6 +2199,7 @@ ghcupDownloads:
|
||||
dlHash: 5100aa7dea87aaf2ed596be83c93165d7199492f6db431d874fcfa07e8ac76ab
|
||||
unknown_versioning: *ghc-922-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-922-64-fedora
|
||||
unknown_versioning: *ghc-922-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-922-64-fedora
|
||||
@@ -2268,6 +2286,7 @@ ghcupDownloads:
|
||||
dlHash: c2c9e171c205922a7c80e4b43e0432ebdb857076453f969dfda3ba9844aa5f5d
|
||||
unknown_versioning: *ghc-923-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-923-64-fedora
|
||||
unknown_versioning: *ghc-923-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-923-64-fedora
|
||||
@@ -2358,6 +2377,7 @@ ghcupDownloads:
|
||||
dlHash: 540d3a8ddcf6175efeeec54a73893526a6acf464825f7d3d7a396158fc3f6928
|
||||
unknown_versioning: *ghc-924-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-924-64-fedora
|
||||
unknown_versioning: *ghc-924-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-924-64-fedora
|
||||
@@ -2407,7 +2427,6 @@ ghcupDownloads:
|
||||
dlHash: 8cf8408544a1a43adf1bbbb0dd6b074efadffc68bfa1a792947c52e825171224
|
||||
9.2.5:
|
||||
viTags:
|
||||
- Recommended
|
||||
- base-4.16.4.0
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.2.5/docs/html/users_guide/index.html
|
||||
viSourceDL:
|
||||
@@ -2449,6 +2468,7 @@ ghcupDownloads:
|
||||
dlHash: 07c02710ac691a15c4b62e097b98862179fef21fb0bd3bd1e737eaed5831d2fa
|
||||
unknown_versioning: *ghc-925-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-925-64-fedora
|
||||
unknown_versioning: *ghc-925-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-925-64-fedora
|
||||
@@ -2496,6 +2516,175 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.5/ghc-9.2.5-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.2.5-aarch64-apple-darwin
|
||||
dlHash: b060ad093e0d86573e01b3d1fd622d4892f8d8925cbb7d75a67a01d2a4f27f18
|
||||
9.2.6:
|
||||
viTags:
|
||||
- base-4.16.4.0
|
||||
- old
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.2.6/docs/html/users_guide/index.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.6/ghc-9.2.6-src.tar.xz
|
||||
dlSubdir: ghc-9.2.6
|
||||
dlHash: 7a54cf0398ad488b4ed219e15d1d1e64c0b6876c43a0564550dd11f0540d7305
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-926-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.6/ghc-9.2.6-x86_64-deb9-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.6
|
||||
dlHash: a2799409be6a1f5dbb9382b0b1b70d406567b3f6592c6a4f795d8b0b1ae6d4a1
|
||||
'>= 10': &ghc-926-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.6/ghc-9.2.6-x86_64-deb10-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.6
|
||||
dlHash: 85b3eaf0522781244aa7618ee285713a82cab00e21d29ea99159cf69352e2bcb
|
||||
unknown_versioning: *ghc-926-64-deb10
|
||||
Linux_Ubuntu:
|
||||
'< 20': *ghc-926-64-deb9
|
||||
'>= 20': &ghc-926-64-ubuntu20
|
||||
dlUri: https://downloads.haskell.org/ghc/9.2.6/ghc-9.2.6-x86_64-ubuntu20.04-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.6
|
||||
dlHash: 103789e3c710e7814d3cfe734901d40e27cda1f080dec543b55c792d2e8f3866
|
||||
Linux_Mint:
|
||||
'< 20': *ghc-926-64-deb9
|
||||
'>= 20': *ghc-926-64-ubuntu20
|
||||
Linux_Fedora:
|
||||
unknown_versioning: &ghc-926-64-fedora
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.6/ghc-9.2.6-x86_64-fedora27-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.6
|
||||
dlHash: f3adc19fe933188481b8dc3d62842a47832cb63ceb7e5a70424f28c9ff9915d5
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &ghc-926-64-centos
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.6/ghc-9.2.6-x86_64-centos7-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.6
|
||||
dlHash: b7334f002e56588129a04a43559901fcd875b95c194a8bee5fa5f498ea002219
|
||||
unknown_versioning: *ghc-926-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-926-64-fedora
|
||||
unknown_versioning: *ghc-926-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-926-64-fedora
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.6/ghc-9.2.6-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.2.6-x86_64-apple-darwin
|
||||
dlHash: 37f59e129d65a8c331e1aff8abda4d52e1694bb2d29c68d60fced45776f93d62
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.6/ghc-9.2.6-x86_64-unknown-mingw32.tar.xz
|
||||
dlSubdir: ghc-9.2.6-x86_64-unknown-mingw32
|
||||
dlHash: bd13aadeeadb3454199eb797961350f0a19275ec74002b2816d1b63093dfd55f
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.6/ghc-9.2.6-x86_64-alpine3.12-linux-gmp.tar.xz
|
||||
dlSubdir: ghc-9.2.6-x86_64-unknown-linux
|
||||
dlHash: 4bbd45c59365608fffc9a103bff5be9fdc79a06014f4b19154cb7ea66d34830f
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-926-32-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.6/ghc-9.2.6-i386-deb9-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.6
|
||||
dlHash: 02040f53149322279472a0a3ee0bf398e4d9377f6b9484dbf4a83fef7e6d51a8
|
||||
unknown_versioning: *ghc-926-32-deb9
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-926-32-deb9
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc-926-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-926-32-deb9
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.6/ghc-9.2.6-aarch64-deb10-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.6
|
||||
dlHash: 824635dc779415bdcd20c4ef432e683a10d0a6c64dedca3441b434a60d0944f1
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.6/ghc-9.2.6-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.2.6-aarch64-apple-darwin
|
||||
dlHash: 68e54fd1af808395584e73b6a9a5b6c7dd85d451da00429aa124a821f4e96ad0
|
||||
9.2.7:
|
||||
viTags:
|
||||
- base-4.16.4.0
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.2.7/docs/html/users_guide/index.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-src.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: a253567a17b734a4c0dd0ffa296d33c2a5b5a54a77df988806a2a1e1ca7e88b8
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-927-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-deb9-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: d57b7df77ed80b7a37601c6b99a9458f9d1e937f3ec91b1454bb88a70302919a
|
||||
'>= 10': &ghc-927-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-deb10-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: 3a76ad6b96915eebf960d1b757ee57341302a76c6a8f97af63fd84eddb45362b
|
||||
unknown_versioning: *ghc-927-64-deb10
|
||||
Linux_Ubuntu:
|
||||
'< 20': *ghc-927-64-deb9
|
||||
'>= 20': &ghc-927-64-ubuntu20
|
||||
dlUri: https://downloads.haskell.org/ghc/9.2.7/ghc-9.2.7-x86_64-ubuntu20.04-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: b74d8d1afd181dd48ba81a2e8991c01281975b7a25791a0504835d049ae416c3
|
||||
Linux_Mint:
|
||||
'< 20': *ghc-927-64-deb9
|
||||
'>= 20': *ghc-927-64-ubuntu20
|
||||
Linux_Fedora:
|
||||
unknown_versioning: &ghc-927-64-fedora
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-fedora27-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: f38a62b4e4f6b55bf819113b98284e084f190a6c8dc23d8313aa7d895045a0a6
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &ghc-927-64-centos
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-centos7-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: b4db141559b9e9df18ead9647447016ea29d55e306ab6eb4a612ef2493ef8871
|
||||
unknown_versioning: *ghc-927-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-927-64-fedora
|
||||
unknown_versioning: *ghc-927-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-927-64-fedora
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.2.7-x86_64-apple-darwin
|
||||
dlHash: 9ab3bc98e32978d555b9ee8cb5996ead330fdcb530575788eb1c12c67441f975
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-unknown-mingw32.tar.xz
|
||||
dlSubdir: ghc-9.2.7-x86_64-unknown-mingw32
|
||||
dlHash: 30b9545a18eeb509dac427415fa1c45c264e09ec6ab0e93c8ec48742cbb90f24
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-alpine3.12-linux-gmp.tar.xz
|
||||
dlSubdir: ghc-9.2.7-x86_64-unknown-linux
|
||||
dlHash: 0d506e3b12728bba25a729b00de755710e9710292f37d56a227d5374e8225aa6
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-927-32-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-i386-deb9-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: 02d63c411dba82ae46ae9d7e775057d0de36a5da27791809bf9d9750a824b0bd
|
||||
unknown_versioning: *ghc-927-32-deb9
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-927-32-deb9
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc-927-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-927-32-deb9
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-aarch64-deb10-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: b4829dd2f4bdaa4b21b22b50edec17616848ab22ab64188047a3eb12bb4da85a
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.2.7-aarch64-apple-darwin
|
||||
dlHash: a4b63dad502e45da4c65d5255844868eed6bc9157b63fe3fd920f4efb82bb11e
|
||||
9.4.1:
|
||||
viTags:
|
||||
- base-4.17.0.0
|
||||
@@ -2544,6 +2733,7 @@ ghcupDownloads:
|
||||
dlHash: efe05368d6367ce9109c7607a0945d85273cc95a730dd17f23d8ae79ee3524ea
|
||||
unknown_versioning: *ghc-941-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-941-64-deb10
|
||||
unknown_versioning: *ghc-941-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-941-64-fedora
|
||||
@@ -2633,6 +2823,7 @@ ghcupDownloads:
|
||||
dlHash: 017bbf5ba0d526ec82ac97a2ea2a177f162424ea970cd5d6279b843b3d799668
|
||||
unknown_versioning: *ghc-942-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-942-64-deb10
|
||||
unknown_versioning: *ghc-942-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-942-64-fedora
|
||||
@@ -2722,6 +2913,7 @@ ghcupDownloads:
|
||||
dlHash: 50037bc8672f0429e2de1255b21f04529807182cf74887a60e4d416d3b6ce8f2
|
||||
unknown_versioning: *ghc-943-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-943-64-deb10
|
||||
unknown_versioning: *ghc-943-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-943-64-fedora
|
||||
@@ -2766,7 +2958,6 @@ ghcupDownloads:
|
||||
dlHash: 531c0a4708655bc8707ba88b8a72d34b5958fddc519a12359613f6db62f0eb82
|
||||
9.4.4:
|
||||
viTags:
|
||||
- Latest
|
||||
- base-4.17.0.0
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.4.4/docs/users_guide/9.4.4-notes.html
|
||||
viSourceDL:
|
||||
@@ -2812,6 +3003,7 @@ ghcupDownloads:
|
||||
dlHash: 8d6dee632966123ec901660cd155dfdc3aa3f13116574215d958a4705b8327e1
|
||||
unknown_versioning: *ghc-944-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-944-64-deb10
|
||||
unknown_versioning: *ghc-944-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-944-64-fedora
|
||||
@@ -2854,6 +3046,201 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.4/ghc-9.4.4-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.4.4-aarch64-apple-darwin
|
||||
dlHash: b50507b229e0c418b32e4b6cc060288ba9497fdd912962e3b0707d0a2b003658
|
||||
9.4.5:
|
||||
viTags:
|
||||
- base-4.17.1.0
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.4.5/docs/users_guide/9.4.5-notes.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-src.tar.xz
|
||||
dlSubdir: ghc-9.4.5
|
||||
dlHash: 6256cf9caf6d6dc7b611dcfbb247df2d528e85aa39d22a698e870e5a590e8601
|
||||
viTestDL:
|
||||
dlUri: https://downloads.haskell.org/ghc/9.4.5/ghc-9.4.5-testsuite.tar.xz
|
||||
dlSubdir: ghc-9.4.5/testsuite
|
||||
dlHash: 97d6dd8c889a1114e5038dec4b66e875cce157a2855a9a60bfdbcde804cf4573
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-945-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-deb9-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-linux
|
||||
dlHash: 7508314c884c69738e93eb69b919d965e83c444830ae53c5991818f8414634be
|
||||
'(>= 10 && < 11)': &ghc-945-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-deb10-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-linux
|
||||
dlHash: a44c39c4cc9a147de6dd31762995a9e47467cc91757800d80667b8cd60a9b226
|
||||
'>= 11': &ghc-945-64-deb11
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-deb11-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-linux
|
||||
dlHash: 561ccb6b155672f5077fd79daf13a862710049202c7448ce82ee2ee1d9063bc7
|
||||
unknown_versioning: *ghc-945-64-deb11
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-945-64-deb10
|
||||
'( >= 16 && < 19 )': *ghc-945-64-deb9
|
||||
Linux_Mint:
|
||||
'< 20': *ghc-945-64-deb9
|
||||
'>= 20': *ghc-945-64-deb10
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &ghc-945-64-centos
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-centos7-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-linux
|
||||
dlHash: d9cacea4a948bd03c03ee432c33a71304d1a5db6657ee613f2a83088581321be
|
||||
unknown_versioning: *ghc-945-64-centos
|
||||
Linux_Fedora:
|
||||
'( >= 27 && < 33 )': &ghc-945-64-fedora-27
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-fedora27-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-linux
|
||||
dlHash: ba10e15d8f20ff5451f2dbfee0601210dbbacc63de1bdcef8d2d91763fde84ea
|
||||
'>= 33': &ghc-945-64-fedora-33
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-fedora33-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-linux
|
||||
dlHash: 3cf52bc88ec212d0aed3bbcc1f3e54c61cc639975f90302b44b3f4d1eee3f153
|
||||
unknown_versioning: *ghc-945-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-945-64-fedora-27
|
||||
unknown_versioning: *ghc-945-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-945-64-fedora-27
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-apple-darwin
|
||||
dlHash: f8cf9bb725120c25fac909834c79786ac646c97dc3cd69a1ef0b734b489d6709
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-unknown-mingw32.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-mingw32
|
||||
dlHash: 1b65ccb99b5e0bc6ad535b58323b023c61a675e0c3a0d53b82f819e55a7dd8d7
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-alpine3_12-linux-static-int_native.tar.xz
|
||||
dlSubdir: ghc-9.4.5-x86_64-unknown-linux
|
||||
dlHash: fd5fd84e75909baf952f26287ce2396d664dbfca251f0696ae7f31a868b59520
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-945-32-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-i386-deb9-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-i386-unknown-linux
|
||||
dlHash: 74a940f8afb4332f5eb0cde6aa6def8c8aae8c8632b05884a226434c86a644ec
|
||||
unknown_versioning: *ghc-945-32-deb9
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-945-32-deb9
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc-945-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-945-32-deb9
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-aarch64-deb10-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.5-aarch64-unknown-linux
|
||||
dlHash: ecf16ec503e739e727174b29e5acbe4cf0c54737dd4d5eda046e09323f9ee248
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.4.5-aarch64-apple-darwin
|
||||
dlHash: edd28a261f4d608be59000fb4c4a4d37b2cc825e6d46aded6612661de7d066a0
|
||||
9.6.1:
|
||||
viArch:
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
<10: &ghc-961-32-deb9
|
||||
dlHash: 5c0a14ec107a99aa084e18cb595cc2d445d6c2fdc5365bbf3b82248205638a85
|
||||
dlSubdir: ghc-9.6.1-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-i386-deb9-linux.tar.xz
|
||||
unknown_versioning: *ghc-961-32-deb9
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc-961-32-deb9
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-961-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-961-32-deb9
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: 3dcca5e83795b5b7c0af636216dc2ef9c40c70fb368bc7feb2a74921c81445ff
|
||||
dlSubdir: ghc-9.6.1-x86_64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-apple-darwin.tar.xz
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: d2eac4b74b57ad5840cd7f4c7ee2fe11ede74679b71b66a4e784c02eaa059d7f
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-alpine3_12-linux-static-int_native.tar.xz
|
||||
Linux_CentOS:
|
||||
( >= 7 && < 8 ): &ghc-961-64-centos7
|
||||
dlHash: c7fb1b5acd69cf0b940bcd4548b423cd5d7ca219f244cee6807fe307e0f08c4e
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-centos7-linux.tar.xz
|
||||
unknown_versioning: *ghc-961-64-centos7
|
||||
Linux_Debian:
|
||||
(>= 10 && < 11):
|
||||
dlHash: 48d533c88ba2d852c50eaf98859a7779844512d05577f1ced17cc68cc63f4d03
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-deb10-linux.tar.xz
|
||||
< 10:
|
||||
dlHash: 3c727e93a82ff039fbedd6645518859849130a0fc93b7181cd69a41800aa639c
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-deb9-linux.tar.xz
|
||||
'>= 11': &ghc-961-64-deb11
|
||||
dlHash: 73222632a1154fd2e54c6920609cb68ddee2915675f04d74b08b24f9cc492ee6
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-deb11-linux.tar.xz
|
||||
unknown_versioning: *ghc-961-64-deb11
|
||||
Linux_Fedora:
|
||||
'>= 33':
|
||||
dlHash: 5405b5fd66ab30e19c69bfb0eb27ac62069ee2d5af9d413ece835b8ad1e3c15d
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-fedora33-linux.tar.xz
|
||||
unknown_versioning: *ghc-961-64-centos7
|
||||
Linux_Mint:
|
||||
< 20: &ghc-961-64-ubuntu1804
|
||||
dlHash: 5c9dd525e2cc8a1aed75dbf0676ab51fbcf555960fca9734cbd0a39d0850f64d
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-ubuntu18_04-linux.tar.xz
|
||||
'>= 20': &ghc-961-64-ubuntu2004
|
||||
dlHash: 95cfd9d1144eb14a01b43474c2ebfe8a50373a8d8ea53ebac461d4fa4878e4ed
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-ubuntu20_04-linux.tar.xz
|
||||
Linux_RedHat:
|
||||
'>= 8': &ghc-961-64-rocky8
|
||||
dlHash: 97172efe434bfe27c112f16b3ab3708c1fb3defb5c1d1319c738c7afea95901d
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-rocky8-linux.tar.xz
|
||||
unknown_versioning: *ghc-961-64-centos7
|
||||
Linux_Ubuntu:
|
||||
( >= 16 && < 19 ): *ghc-961-64-ubuntu1804
|
||||
unknown_versioning: *ghc-961-64-ubuntu2004
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-961-64-rocky8
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlHash: 6121a889839d8b409f082169365bbfb6ed9e6a1f6ff0531d577ef7c2a9a417fb
|
||||
dlSubdir: ghc-9.6.1-x86_64-unknown-mingw32
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-unknown-mingw32.tar.xz
|
||||
A_ARM64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: 1729e8cec960879c620917d935a673e54197fa2ee87c62e45c44fad2e522960a
|
||||
dlSubdir: ghc-9.6.1-aarch64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-aarch64-apple-darwin.tar.xz
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: 0fd57fdc9e7b9c0850350492deea1c00016d751c89c11478cfe6b6038da0c6db
|
||||
dlSubdir: ghc-9.6.1-aarch64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-aarch64-deb10-linux.tar.xz
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.6.1/docs/users_guide/9.6.1-notes.html
|
||||
viSourceDL:
|
||||
dlHash: fe5ac909cb8bb087e235de97fa63aff47a8ae650efaa37a2140f4780e21f34cb
|
||||
dlSubdir: ghc-9.6.1
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-src.tar.xz
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
- base-4.18.0.0
|
||||
viTestDL:
|
||||
dlHash: 8bfa74d102da570cb87fbbc3465c7f778a4e6dc76606fef80207de7e8b64114f
|
||||
dlSubdir: ghc-9.6.1
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-testsuite.tar.xz
|
||||
Cabal:
|
||||
2.4.1.0:
|
||||
viTags:
|
||||
@@ -3090,17 +3477,16 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.6.0.0/cabal-install-3.6.0.0-armv7-linux-deb10.tar.xz
|
||||
dlHash: 12fb9f3d449159fba57108d07b798bd66eb53451782474176580c96cb8663513
|
||||
3.6.2.0:
|
||||
viTags:
|
||||
- Recommended
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.6.2.0.md
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-3620-32
|
||||
unknown_versioning: &cabal-3620-64
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.6.2.0/cabal-install-3.6.2.0-x86_64-linux-alpine-static.tar.xz
|
||||
dlHash: 7810d31f35ca7649355647abc6406ad2a3696648ce848e49409e86bd70f6a2c6
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *cabal-3620-32
|
||||
unknown_versioning: *cabal-3620-64
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.6.2.0/cabal-install-3.6.2.0-x86_64-darwin.tar.xz
|
||||
@@ -3139,8 +3525,7 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.6.2.0/cabal-install-3.6.2.0-armv7-linux-deb10.tar.xz
|
||||
dlHash: 94477e9f318053a9d806fd3f7188014ee4c803d367a943097e5ec4c68536609b
|
||||
3.8.1.0:
|
||||
viTags:
|
||||
- Latest
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.8.1.0.md
|
||||
viArch:
|
||||
A_64:
|
||||
@@ -3168,6 +3553,39 @@ ghcupDownloads:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.8.1.0/cabal-install-3.8.1.0-aarch64-darwin.tar.xz
|
||||
dlHash: f75b129c19cf3aa88cf9885cbf5da6d16f9972c7f770c528ca765b9f0563ada3
|
||||
3.10.1.0:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.10.1.0.md
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-31010-64
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.10.1.0/cabal-install-3.10.1.0-x86_64-linux-alpine.tar.xz
|
||||
dlHash: 187fa3d6e69bd8647aea121e469a1c8e4688a704ab88df54e9547c571e1cdd99
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *cabal-31010-64
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.10.1.0/cabal-install-3.10.1.0-x86_64-darwin.tar.xz
|
||||
dlHash: 893a316bd634cbcd08861306efdee86f66ec634f9562a8c59dc616f7e2e14ffa
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.10.1.0/cabal-install-3.10.1.0-x86_64-windows.zip
|
||||
dlHash: 31ca1cd173d4da675bc9790746d6b492cbe204e0332b282141d7ecc8ae43997b
|
||||
A_32:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-31010-32
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.10.1.0/cabal-install-3.10.1.0-i386-linux-deb9.tar.xz
|
||||
dlHash: 3c4a43a3ac1ef80e66953c2a8f83bb51298c21aeb7328ce06534600a7259a866
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *cabal-31010-32
|
||||
A_ARM64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.10.1.0/cabal-install-3.10.1.0-aarch64-darwin.tar.xz
|
||||
dlHash: fdabdc4dca42688a97f2b837165af42fcfd4c111d42ddb0d4df7bbebd5c8750e
|
||||
GHCup:
|
||||
0.1.19.2:
|
||||
viTags:
|
||||
@@ -3188,7 +3606,7 @@ ghcupDownloads:
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/x86_64-portbld-freebsd-ghcup-0.1.19.2
|
||||
dlHash: 5b702adb306e4823ff5ceb3bb9e0ae1e4a9f2ecd9d1ed8b9689c5aaf8e7170e2
|
||||
dlHash: 7f12d65d71246542d29e4786fcbc6bc63d0251e3f3825e63376f8e65ff572023
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/x86_64-mingw64-ghcup-0.1.19.2.exe
|
||||
@@ -3206,7 +3624,7 @@ ghcupDownloads:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/aarch64-linux-ghcup-0.1.19.2
|
||||
dlHash: 7ab3606f3de49c363444dd5879edde27a3e7df0adbd981a8c12a153861fde271
|
||||
dlHash: 68193e1ef04398b4ef23619abafdde406a22221fbb45eac81214c1fdffdf00ef
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/aarch64-apple-darwin-ghcup-0.1.19.2
|
||||
@@ -3215,7 +3633,7 @@ ghcupDownloads:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/armv7-linux-ghcup-0.1.19.2
|
||||
dlHash: a18b6723ef0ee143f69c8d6657e1b749ac61938f81a7413656349c9fda3c7021
|
||||
dlHash: 9d5e17b5d5436429401d9349c4da3257a0721e084db8b47048cd9a07d2741624
|
||||
HLS:
|
||||
1.1.0:
|
||||
viTags:
|
||||
@@ -3586,8 +4004,7 @@ ghcupDownloads:
|
||||
dlSubdir: haskell-language-server-1.8.0.0
|
||||
dlHash: 89baeb96588e05785d1e75687ea220c03ceb8a513e5b28ee042f2ed5acb448b8
|
||||
1.9.0.0:
|
||||
viTags:
|
||||
- Recommended
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
@@ -3655,8 +4072,7 @@ ghcupDownloads:
|
||||
dlSubdir: haskell-language-server-1.9.0.0
|
||||
dlHash: 4524c9e700a0a91670976f089dc2d7ed0d970420e93faf9ca1ad1246ec348011
|
||||
1.9.1.0:
|
||||
viTags:
|
||||
- Latest
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
@@ -3746,6 +4162,102 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.9.1.0/haskell-language-server-1.9.1.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-1.9.1.0
|
||||
dlHash: 5cbcfa0903bd776168a11c8ec437e8231699cd701d7b44496e9a2a3766fa08e9
|
||||
1.10.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-1.10.0.0/haskell-language-server-1.10.0.0-src.tar.gz
|
||||
dlSubdir: haskell-language-server-1.10.0.0-wip
|
||||
dlHash: dc73a89b43ed7f5f1823220a6873a6f5033d6140dde847526599b9fb41b2ed08
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
'< 10': &hls-1100-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-deb9.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 88ae4573e54d053e4f60eed47715b6d3e8d92ad4c66b1499902623ffcc780c1a
|
||||
'(>= 10 && < 11)': &hls-1100-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-deb10.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 39de32e533993f9918822a1b6e370f618f60ec42aa84f10293d563571f0a6c97
|
||||
unknown_versioning: &hls-1100-64-deb11
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-deb11.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 41cc2665933005c7821fb18bac8cfaeb28b1ac588e297199df63fcd34e8ce84d
|
||||
Linux_Ubuntu:
|
||||
'( >= 16 && < 19 )': &hls-1100-64-ubuntu18
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-ubuntu18.04.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 189bc3d2c1493b5e1fbf49c176c92136ce1e91dd449fbf2ebc044a0292869f38
|
||||
'( >= 20 && < 22 )': &hls-1100-64-ubuntu20
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-ubuntu20.04.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: c33f6a5bdc3f1bbc44a2db16c9330912b3ace2127007b6e19d8422c70dff3e4e
|
||||
unknown_versioning: &hls-1100-64-ubuntu22
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-ubuntu22.04.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 54634827b11dad41d234b1b138d3c20752aa16e4368d285f2f1ceec373ccf7a7
|
||||
Linux_Mint:
|
||||
'< 20':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-mint19.3.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 46dfed0a072a0b03b44052c3dd13c6e71d12d35e0fe7d3f032f55e04c0ebcddc
|
||||
'(>= 20 && < 21)':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-mint20.2.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 0858611d2f1b3fa6973b116a49fab6e713c93e6a7c966af1ca3c5be164af289f
|
||||
'>= 21': *hls-1100-64-ubuntu22
|
||||
Linux_Fedora:
|
||||
'< 33': &hls-1100-64-fedora27
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-fedora27.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: d9355647337122d4d51043b366d5ff498115ff86cba0f50580e158d7e4050451
|
||||
'>= 33': &hls-1100-64-fedora33
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-fedora33.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 44ee43b066662fdec41f72af0d0da74cd8d5444f0b1fefa42c4890b0b812cef4
|
||||
unknown_versioning: *hls-1100-64-fedora27
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &hls-1100-64-centos
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-centos7.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 873d20a068398a52671f710f4fb06736f109752c03c2177950887125ccde18ca
|
||||
unknown_versioning: *hls-1100-64-centos
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *hls-1100-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-linux-unknown.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: b3cb7673dcff1fc39a2465b24fd744756331fd3cd48aed57bfbe66d274644cf6
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 66290c1368c2d65043779ad46b88ac271564f50d606f6e559e64ec26107a58a6
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-mingw64.zip
|
||||
dlHash: 25e84ee35d7376b1e3b2ddb68808eaba77462d7d0fa2a849bf65dcde1265274e
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-x86_64-freebsd.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: 843455de47a2e212b6cd2f06bf9530eeaae0e62c4ef8ba2b4115773b34fc34a1
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-aarch64-linux-ubuntu20.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: f5e3b11e121c988905542450a3d9df18fb5ff38386862d3bffd4b5c3935d01dc
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.10.0.0/haskell-language-server-1.10.0.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-1.10.0.0
|
||||
dlHash: d2f46ec1ce923b74b575f8926f9b0992ab0f3ab8fa5d45590c641316f1e901af
|
||||
Stack:
|
||||
2.5.1:
|
||||
viTags:
|
||||
@@ -3860,8 +4372,7 @@ ghcupDownloads:
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *stack-275-64
|
||||
2.9.1:
|
||||
viTags:
|
||||
- Recommended
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v291
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
@@ -3894,6 +4405,7 @@ ghcupDownloads:
|
||||
2.9.3:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v293
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
|
||||
Binary file not shown.
@@ -772,5 +772,93 @@
|
||||
"9.4.4"
|
||||
]
|
||||
}
|
||||
},
|
||||
"1.10.0.0": {
|
||||
"A_64": {
|
||||
"Darwin": [
|
||||
"8.10.7",
|
||||
"9.0.2",
|
||||
"9.2.7",
|
||||
"9.4.4",
|
||||
"9.6.1"
|
||||
],
|
||||
"FreeBSD": [
|
||||
"8.10.7",
|
||||
"9.0.2",
|
||||
"9.2.5",
|
||||
"9.2.7"
|
||||
],
|
||||
"Linux_CentOS": [
|
||||
"8.10.7",
|
||||
"9.0.2",
|
||||
"9.2.7",
|
||||
"9.4.4",
|
||||
"9.6.1"
|
||||
],
|
||||
"Linux_Debian": [
|
||||
"8.10.7",
|
||||
"9.0.2",
|
||||
"9.2.7",
|
||||
"9.4.4",
|
||||
"9.6.1"
|
||||
],
|
||||
"Linux_Fedora": [
|
||||
"8.10.7",
|
||||
"9.0.2",
|
||||
"9.2.7",
|
||||
"9.4.4",
|
||||
"9.6.1"
|
||||
],
|
||||
"Linux_Mint": [
|
||||
"8.10.7",
|
||||
"9.0.2",
|
||||
"9.2.7",
|
||||
"9.4.4",
|
||||
"9.6.1"
|
||||
],
|
||||
"Linux_RedHat": [
|
||||
"8.10.7",
|
||||
"9.0.2",
|
||||
"9.2.7",
|
||||
"9.4.4",
|
||||
"9.6.1"
|
||||
],
|
||||
"Linux_Ubuntu": [
|
||||
"8.10.7",
|
||||
"9.0.2",
|
||||
"9.2.7",
|
||||
"9.4.4",
|
||||
"9.6.1"
|
||||
],
|
||||
"Linux_UnknownLinux": [
|
||||
"8.10.7",
|
||||
"9.0.2",
|
||||
"9.2.7",
|
||||
"9.4.4",
|
||||
"9.6.1"
|
||||
],
|
||||
"Windows": [
|
||||
"8.10.7",
|
||||
"9.0.2",
|
||||
"9.2.7",
|
||||
"9.4.4",
|
||||
"9.6.1"
|
||||
]
|
||||
},
|
||||
"A_ARM64": {
|
||||
"Darwin": [
|
||||
"8.10.7",
|
||||
"9.2.7",
|
||||
"9.4.4",
|
||||
"9.6.1"
|
||||
],
|
||||
"Linux_UnknownLinux": [
|
||||
"8.10.7",
|
||||
"9.0.2",
|
||||
"9.2.7",
|
||||
"9.4.4",
|
||||
"9.6.1"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user