Compare commits

...

2 commits

Author SHA1 Message Date
qvalentin 1a44dae580 minor fix 2025-01-21 21:21:21 +01:00
qvalentin 939eb59714 docs: add note about stack lts 2025-01-21 21:05:02 +01:00
3 changed files with 6 additions and 3 deletions

View file

@ -5,6 +5,8 @@ pkgs.mkShell {
haskell-language-server
stack
stylish-haskell
libnotify
];
}

View file

@ -62,7 +62,7 @@ roomStateDiffInOpenRooms newData = do
current <- getRoomDataState
let newRooms = filter roomNotEmpty $ filter (\newRoom -> isNothing $ find (sameName newRoom) current) newData
let oldRooms = filter (\newRoom -> isJust $ find (sameName newRoom) current) newData
let oldRooms = filter roomNotEmpty $ filter (\oldRoom -> isNothing $ find (sameName oldRoom) newData) current
return (newRooms, oldRooms)

View file

@ -14,8 +14,9 @@
# Use the latest resolver that uses the same ghc version
# as build for nixos
# this way we can use prebuild binaries for hls
#resolver: nightly-2022-11-12
#resolver: ghc-9.2.4
# go to
# https://www.stackage.org/
# and select the lts that is matching you hls version
resolver: lts-22.43
#
# The location of a snapshot can be provided as a file or url. Stack assumes