haskell-highlighting-kate: compile with regex-pcre instead of regex-pcre-builtin

This commit is contained in:
Peter Simons 2012-11-20 14:40:17 +01:00
parent 9fa9e0520f
commit 0c20f29893

View file

@ -1,4 +1,4 @@
{ cabal, blazeHtml, filepath, mtl, parsec, regexPcreBuiltin }:
{ cabal, blazeHtml, filepath, mtl, parsec, regexPcre }:
cabal.mkDerivation (self: {
pname = "highlighting-kate";
@ -6,7 +6,8 @@ cabal.mkDerivation (self: {
sha256 = "08jxl2ba0kb4vj1qbdf4sas8bwbxzayzwsxnjvq358x57i5l302n";
isLibrary = true;
isExecutable = true;
buildDepends = [ blazeHtml filepath mtl parsec regexPcreBuiltin ];
buildDepends = [ blazeHtml filepath mtl parsec regexPcre ];
prePatch = "sed -i -e 's|regex-pcre-builtin|regex-pcre|' highlighting-kate.cabal";
meta = {
homepage = "http://github.com/jgm/highlighting-kate";
description = "Syntax highlighting";