[commit: packages/pretty] master: fix missing ghc-prim package (a2e79da)
git at git.haskell.org
git at git.haskell.org
Fri Jan 23 22:49:34 UTC 2015
Repository : ssh://git@git.haskell.org/pretty
On branch : master
Link : http://git.haskell.org/packages/pretty.git/commitdiff/a2e79daa67b831a2b61233ca908fa14da5f5f7ad
>---------------------------------------------------------------
commit a2e79daa67b831a2b61233ca908fa14da5f5f7ad
Author: David Terei <code at davidterei.com>
Date: Thu Dec 25 02:08:59 2014 -0800
fix missing ghc-prim package
>---------------------------------------------------------------
a2e79daa67b831a2b61233ca908fa14da5f5f7ad
pretty.cabal | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/pretty.cabal b/pretty.cabal
index 91e80fb..db04752 100644
--- a/pretty.cabal
+++ b/pretty.cabal
@@ -32,7 +32,8 @@ Library
Text.PrettyPrint.HughesPJ
Text.PrettyPrint.HughesPJClass
build-depends: base >= 3 && < 5,
- deepseq >= 1.1
+ deepseq >= 1.1,
+ ghc-prim
extensions: CPP, BangPatterns
ghc-options: -Wall -fwarn-tabs
@@ -42,6 +43,7 @@ Test-Suite test-pretty
src
build-depends: base >= 3 && < 5,
deepseq >= 1.1,
+ ghc-prim,
QuickCheck >= 2.5 && <3
main-is: Test.hs
other-modules:
More information about the ghc-commits
mailing list