From 6c2089b5e5ec9d0d26213ed833402f36a7bea982 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 21 Sep 2013 10:20:15 +0200 Subject: [PATCH] haskell-pandoc: update to version 1.12.0.2 --- pkgs/development/libraries/haskell/pandoc/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/haskell/pandoc/default.nix b/pkgs/development/libraries/haskell/pandoc/default.nix index 389a961dbebc..c3149c4a2e25 100644 --- a/pkgs/development/libraries/haskell/pandoc/default.nix +++ b/pkgs/development/libraries/haskell/pandoc/default.nix @@ -2,29 +2,30 @@ , blazeHtml, blazeMarkup, dataDefault, Diff, extensibleExceptions , filepath, happy, highlightingKate, hslua, HTTP, httpConduit , httpTypes, HUnit, mtl, network, pandocTypes, parsec, QuickCheck -, random, stringable, syb, tagsoup, temporary, testFramework +, random, syb, tagsoup, temporary, testFramework , testFrameworkHunit, testFrameworkQuickcheck2, texmath, text, time , unorderedContainers, vector, xml, yaml, zipArchive, zlib }: cabal.mkDerivation (self: { pname = "pandoc"; - version = "1.12"; - sha256 = "04jng6mrb78gzksspihkcmiidrjyqya06lnqiwvfq7mk9jd1wy49"; + version = "1.12.0.2"; + sha256 = "125vl6l7nd3s3zwkms46y8l5zhg22iwz5387ll9rd2hf6asfpp56"; isLibrary = true; isExecutable = true; buildDepends = [ aeson alex attoparsec base64Bytestring blazeHtml blazeMarkup dataDefault extensibleExceptions filepath happy highlightingKate hslua HTTP httpConduit httpTypes mtl network pandocTypes parsec - random stringable syb tagsoup temporary texmath text time - unorderedContainers vector xml yaml zipArchive zlib + random syb tagsoup temporary texmath text time unorderedContainers + vector xml yaml zipArchive zlib ]; testDepends = [ ansiTerminal Diff filepath highlightingKate HUnit pandocTypes QuickCheck syb testFramework testFrameworkHunit testFrameworkQuickcheck2 text ]; + buildTools = [ alex happy ]; doCheck = false; meta = { homepage = "http://johnmacfarlane.net/pandoc";