Skip to content

Commit

Permalink
Fixing compilation errors in GHC 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Mar 15, 2018
1 parent 84f2885 commit 428a2e7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 117 deletions.
115 changes: 0 additions & 115 deletions language-docker.cabal

This file was deleted.

5 changes: 4 additions & 1 deletion src/Language/Docker/PrettyPrint.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE NoImplicitPrelude #-}

module Language.Docker.PrettyPrint where

Expand All @@ -11,7 +12,9 @@ import Data.List (foldl', intersperse)
import Data.List.NonEmpty as NonEmpty (NonEmpty(..), toList)
import Data.String
import Language.Docker.Syntax
import Prelude hiding ((>>), (>>=), return)
import Prelude
(Bool(..), Maybe(..), ($), (++), (.), map, maybe, mempty, reverse,
show, snd)
import Text.PrettyPrint

-- | Pretty print a 'Dockerfile' to a 'String'
Expand Down
2 changes: 1 addition & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
resolver: lts-10.0
resolver: lts-10.9
packages:
- '.'
flags: {}
Expand Down

0 comments on commit 428a2e7

Please sign in to comment.