From e3605d48f3ada54da991257920b6a139d9374ddf Mon Sep 17 00:00:00 2001 From: Sam Tay Date: Sat, 17 Apr 2021 22:30:44 -0400 Subject: [PATCH] Update stack lts to 17.9 --- app/Main.hs | 2 -- src/UI/Game.hs | 4 +++- stack.yaml | 10 ++-------- stack.yaml.lock | 12 ++++++++++++ tetris.cabal | 4 ++-- 5 files changed, 19 insertions(+), 13 deletions(-) create mode 100644 stack.yaml.lock diff --git a/app/Main.hs b/app/Main.hs index 2011352..39d9d59 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -1,9 +1,7 @@ module Main where import Control.Monad (when) -import Data.Monoid ((<>)) import System.Exit (exitSuccess) -import System.IO (readFile, writeFile) import Text.Read (readMaybe) import Options.Applicative diff --git a/src/UI/Game.hs b/src/UI/Game.hs index 802275d..c7cff94 100644 --- a/src/UI/Game.hs +++ b/src/UI/Game.hs @@ -66,7 +66,9 @@ playGame lvl mp = do writeBChan chan Tick threadDelay delay initialGame <- initGame lvl - ui <- customMain (V.mkVty V.defaultConfig) (Just chan) app $ UI + let builder = V.mkVty V.defaultConfig + initialVty <- builder + ui <- customMain initialVty builder (Just chan) app $ UI { _game = initialGame , _preview = mp , _locked = False diff --git a/stack.yaml b/stack.yaml index f9b7cc9..945f1e2 100644 --- a/stack.yaml +++ b/stack.yaml @@ -2,14 +2,8 @@ flags: {} extra-package-dbs: [] packages: - '.' -extra-deps: - - brick-0.45 - - config-ini-0.2.4.0 - - data-clist-0.1.2.1 - - text-zipper-0.10.1 - - word-wrap-0.4.1 - - QuickCheck-2.11.3 -resolver: lts-13.0 +extra-deps: [] +resolver: lts-17.9 nix: packages: - gcc diff --git a/stack.yaml.lock b/stack.yaml.lock new file mode 100644 index 0000000..348de92 --- /dev/null +++ b/stack.yaml.lock @@ -0,0 +1,12 @@ +# This file was autogenerated by Stack. +# You should not edit this file by hand. +# For more information, please see the documentation at: +# https://docs.haskellstack.org/en/stable/lock_files + +packages: [] +snapshots: +- completed: + size: 567037 + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/17/9.yaml + sha256: d7d8d5106e53d1669964bd8bd2b0f88a5ad192d772f5376384b76738fd992311 + original: lts-17.9 diff --git a/tetris.cabal b/tetris.cabal index afbcc51..bc8a87a 100644 --- a/tetris.cabal +++ b/tetris.cabal @@ -4,8 +4,8 @@ homepage: https://github.com/samtay/tetris#readme license: BSD3 license-file: LICENSE author: Sam Tay -maintainer: sam.chong.tay@gmail.com -copyright: 2017 Sam Tay +maintainer: sam.chong.tay@pm.me +copyright: 2021 Sam Tay category: Web build-type: Simple extra-source-files: README.md