diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-10-12 14:28:11 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-10-12 14:28:11 -0700 |
commit | 2c15b1fcac650054430d11a69f652a47f65c186a (patch) | |
tree | c64a8075c983076c49188957af55154c5d80df34 | |
parent | 0b91c73456ca4506d50495f58b3b803b389f96e7 (diff) | |
download | pandoc-2c15b1fcac650054430d11a69f652a47f65c186a.tar.gz |
Added ghc-prim to build-depends.
This is needed for the Generic instance of PandocError.
Closes #2448.
-rw-r--r-- | pandoc.cabal | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pandoc.cabal b/pandoc.cabal index 114ac5227..7f55d1650 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -281,7 +281,8 @@ Library deepseq-generics >= 0.1 && < 0.2, JuicyPixels >= 3.1.6.1 && < 3.3, filemanip >= 0.3 && < 0.4, - cmark >= 0.4.0.1 && < 0.5 + cmark >= 0.4.0.1 && < 0.5, + ghc-prim >= 0.2 if flag(old-locale) Build-Depends: old-locale >= 1 && < 1.1, time >= 1.2 && < 1.5 |