From bdb24409a4b26ce638683911d412e8a5d283d9dd Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 24 May 2024 10:39:52 -1000 Subject: [PATCH] ;install: use stackage nightly, fix breakage on non-windows platforms --- hledger-install/hledger-install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hledger-install/hledger-install.sh b/hledger-install/hledger-install.sh index cf0070e2f..417f4585a 100755 --- a/hledger-install/hledger-install.sh +++ b/hledger-install/hledger-install.sh @@ -12,7 +12,7 @@ set -o pipefail HLEDGER_INSTALL_TOOL=hledger-install.sh # This install script's version. -HLEDGER_INSTALL_VERSION=20240502 +HLEDGER_INSTALL_VERSION=20240524 # Tools to be installed by this install script, official tools first. # Keep synced with the package versions below. @@ -94,14 +94,14 @@ STACK_MIN_VERSION=2.5.1 # You can try specifying a different stackage version here, or # commenting out this line to use your current global resolver, # to avoid unnecessary building. -STACK_RESOLVER="--resolver=lts-22.19" +STACK_RESOLVER="--resolver=nightly-2024-05-16" # Dependencies we require that aren't in the above stackage snapshot. # (Also requested when using cabal, but that's harmless.) # Be careful not to break interpolation in commands below, the format should be # STACK_EXTRA_DEPS="PKG1-VER1 PKG2-VER2 ..." # extra deps as in stack9.6.yaml: -STACK_EXTRA_DEPS="vty-windows-0.2.0.1" +STACK_EXTRA_DEPS="" #TODO? https://github.com/commercialhaskell/stack/issues/3055 https://github.com/haskell/hackage-security/issues/187 #Updating package index Hackage (mirrored at https://s3.amazonaws.com/hackage.fpcomplete.com/) ...