From d4dbddf71dc03d3629cfb0edf0bc259e2b0d980b Mon Sep 17 00:00:00 2001 From: Jonathan Merritt Date: Fri, 27 Sep 2019 20:41:05 +1000 Subject: [PATCH] Updates for GHC-8.8 - Increase maximum bound on base. - Add "ghc881" to the list of Nix Haskell versions. --- iterm-show.cabal | 6 +++--- test.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/iterm-show.cabal b/iterm-show.cabal index e05da4f..934915d 100644 --- a/iterm-show.cabal +++ b/iterm-show.cabal @@ -1,4 +1,4 @@ --- Initial iterm-show.cabal generated by cabal init. For further +-- Initial iterm-show.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: iterm-show @@ -26,7 +26,7 @@ library exposed-modules: ITermShow other-extensions: OverloadedStrings build-depends: - base >= 4.9 && < 4.13, + base >= 4.9 && < 4.14, bytestring, base64-bytestring hs-source-dirs: src @@ -34,7 +34,7 @@ library executable it2-show build-depends: - base >= 4.9 && < 4.13, + base >= 4.9 && < 4.14, bytestring, iterm-show main-is: it2-show.hs diff --git a/test.nix b/test.nix index 5e1c47e..8c7c7bb 100644 --- a/test.nix +++ b/test.nix @@ -1,7 +1,7 @@ {nixpkgs ? import {}}: with nixpkgs; let - compilers = [ "ghc802" "ghc822" "ghc843" "ghc861" ]; + compilers = [ "ghc802" "ghc822" "ghc843" "ghc861" "ghc881" ]; buildFor = ghc: haskell.packages."${ghc}".callPackage ./iterm-show.nix {};