From b8010188642b07b5f4ed3440092f79637105ecda Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 23 Aug 2011 12:04:29 +0000 Subject: [PATCH] haskell-pandoc: enable highlighting support svn path=/nixpkgs/trunk/; revision=28777 --- pkgs/development/libraries/haskell/pandoc/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/haskell/pandoc/default.nix b/pkgs/development/libraries/haskell/pandoc/default.nix index bba33c7555f..4655593eb7e 100644 --- a/pkgs/development/libraries/haskell/pandoc/default.nix +++ b/pkgs/development/libraries/haskell/pandoc/default.nix @@ -1,6 +1,6 @@ { cabal, base64Bytestring, citeprocHs, dlist, extensibleExceptions -, HTTP, json, mtl, network, pandocTypes, parsec, random, syb -, tagsoup, texmath, utf8String, xhtml, xml, zipArchive +, highlightingKate, HTTP, json, mtl, network, pandocTypes, parsec +, random, syb, tagsoup, texmath, utf8String, xhtml, xml, zipArchive }: cabal.mkDerivation (self: { @@ -10,9 +10,9 @@ cabal.mkDerivation (self: { isLibrary = true; isExecutable = true; buildDepends = [ - base64Bytestring citeprocHs dlist extensibleExceptions HTTP json - mtl network pandocTypes parsec random syb tagsoup texmath - utf8String xhtml xml zipArchive + base64Bytestring citeprocHs dlist extensibleExceptions + highlightingKate HTTP json mtl network pandocTypes parsec random + syb tagsoup texmath utf8String xhtml xml zipArchive ]; meta = { homepage = "http://johnmacfarlane.net/pandoc";