summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-02-06 18:28:19 +0000
committerPeter Simons <simons@cryp.to>2012-02-06 18:28:19 +0000
commitbb5f77cfaafbaeb1a3438cd7445349199dc1074e (patch)
tree1ae207d7959f19fb748d4c4a092912af4648f447 /pkgs/development
parentefa830e5c480d2e6fdadea53722fa3c12ca2aef1 (diff)
downloadnixpkgs-bb5f77cfaafbaeb1a3438cd7445349199dc1074e.tar
nixpkgs-bb5f77cfaafbaeb1a3438cd7445349199dc1074e.tar.gz
nixpkgs-bb5f77cfaafbaeb1a3438cd7445349199dc1074e.tar.bz2
nixpkgs-bb5f77cfaafbaeb1a3438cd7445349199dc1074e.tar.lz
nixpkgs-bb5f77cfaafbaeb1a3438cd7445349199dc1074e.tar.xz
nixpkgs-bb5f77cfaafbaeb1a3438cd7445349199dc1074e.tar.zst
nixpkgs-bb5f77cfaafbaeb1a3438cd7445349199dc1074e.zip
haskell-pandoc: updated to version 1.9.0.3
svn path=/nixpkgs/trunk/; revision=32074
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/haskell/pandoc/default.nix22
1 files changed, 13 insertions, 9 deletions
diff --git a/pkgs/development/libraries/haskell/pandoc/default.nix b/pkgs/development/libraries/haskell/pandoc/default.nix
index 480a90b7135..de998c51b93 100644
--- a/pkgs/development/libraries/haskell/pandoc/default.nix
+++ b/pkgs/development/libraries/haskell/pandoc/default.nix
@@ -1,19 +1,23 @@
-{ cabal, base64Bytestring, blazeHtml, citeprocHs
-, extensibleExceptions, highlightingKate, HTTP, json, mtl, network
-, pandocTypes, parsec, random, syb, tagsoup, temporary, texmath
-, time, utf8String, xml, zipArchive, zlib
+{ cabal, ansiTerminal, base64Bytestring, blazeHtml, citeprocHs
+, Diff, extensibleExceptions, highlightingKate, HTTP, HUnit, json
+, mtl, network, pandocTypes, parsec, QuickCheck, random, syb
+, tagsoup, temporary, testFramework, testFrameworkHunit
+, testFrameworkQuickcheck2, texmath, time, utf8String, xml
+, zipArchive, zlib
 }:
 
 cabal.mkDerivation (self: {
   pname = "pandoc";
-  version = "1.9.0.2";
-  sha256 = "0p1haqya99r52k6c07zq89ifdjs1r5g1y44011114pwsxwkmv43f";
+  version = "1.9.0.3";
+  sha256 = "1p5054sdvvgl38rr0ajfavr79rwr2l8jdrpzai329ksskkh1acdp";
   isLibrary = true;
   isExecutable = true;
   buildDepends = [
-    base64Bytestring blazeHtml citeprocHs extensibleExceptions
-    highlightingKate HTTP json mtl network pandocTypes parsec random
-    syb tagsoup temporary texmath time utf8String xml zipArchive zlib
+    ansiTerminal base64Bytestring blazeHtml citeprocHs Diff
+    extensibleExceptions highlightingKate HTTP HUnit json mtl network
+    pandocTypes parsec QuickCheck random syb tagsoup temporary
+    testFramework testFrameworkHunit testFrameworkQuickcheck2 texmath
+    time utf8String xml zipArchive zlib
   ];
   configureFlags = "-fhighlighting -fthreaded";
   meta = {