haskell-hakyll: jailbreak to fix build with recent versions of regex-tdfa

https://github.com/NixOS/nixos/issues/281
This commit is contained in:
Peter Simons 2014-02-02 23:16:29 +01:00
parent e3651da23e
commit c6053075bd

View File

@ -27,8 +27,10 @@ cabal.mkDerivation (self: {
];
doCheck = false;
patchPhase = ''
sed -i -e 's|blaze-markup.*,|blaze-markup,|' -e 's|blaze-html.*,|blaze-html,|' \
-e 's|pandoc-citeproc.*,|pandoc-citeproc,|' hakyll.cabal
sed -i -e 's|blaze-markup.*,|blaze-markup,|' \
-e 's|blaze-html.*,|blaze-html,|' \
-e 's|pandoc-citeproc.*,|pandoc-citeproc,|' \
-e 's|regex-tdfa.*,|regex-tdfa,|' hakyll.cabal
'';
meta = {
homepage = "http://jaspervdj.be/hakyll";