Compare commits
No commits in common. "1a44dae5804a515524750bef960f763aa4df9eff" and "05d50467999344c42acce1d370c36ef6ab36da6b" have entirely different histories.
1a44dae580
...
05d5046799
|
@ -5,8 +5,6 @@ pkgs.mkShell {
|
||||||
haskell-language-server
|
haskell-language-server
|
||||||
stack
|
stack
|
||||||
stylish-haskell
|
stylish-haskell
|
||||||
|
|
||||||
libnotify
|
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -62,7 +62,7 @@ roomStateDiffInOpenRooms newData = do
|
||||||
current <- getRoomDataState
|
current <- getRoomDataState
|
||||||
|
|
||||||
let newRooms = filter roomNotEmpty $ filter (\newRoom -> isNothing $ find (sameName newRoom) current) newData
|
let newRooms = filter roomNotEmpty $ filter (\newRoom -> isNothing $ find (sameName newRoom) current) newData
|
||||||
let oldRooms = filter roomNotEmpty $ filter (\oldRoom -> isNothing $ find (sameName oldRoom) newData) current
|
let oldRooms = filter (\newRoom -> isJust $ find (sameName newRoom) current) newData
|
||||||
|
|
||||||
return (newRooms, oldRooms)
|
return (newRooms, oldRooms)
|
||||||
|
|
||||||
|
|
|
@ -14,9 +14,8 @@
|
||||||
# Use the latest resolver that uses the same ghc version
|
# Use the latest resolver that uses the same ghc version
|
||||||
# as build for nixos
|
# as build for nixos
|
||||||
# this way we can use prebuild binaries for hls
|
# this way we can use prebuild binaries for hls
|
||||||
# go to
|
#resolver: nightly-2022-11-12
|
||||||
# https://www.stackage.org/
|
#resolver: ghc-9.2.4
|
||||||
# and select the lts that is matching you hls version
|
|
||||||
resolver: lts-22.43
|
resolver: lts-22.43
|
||||||
#
|
#
|
||||||
# The location of a snapshot can be provided as a file or url. Stack assumes
|
# The location of a snapshot can be provided as a file or url. Stack assumes
|
||||||
|
|
Loading…
Reference in a new issue