about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/pandoc/default.nix
blob: de998c51b93c58e755e1e764048391e48294bceb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ 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.3";
  sha256 = "1p5054sdvvgl38rr0ajfavr79rwr2l8jdrpzai329ksskkh1acdp";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    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 = {
    homepage = "http://johnmacfarlane.net/pandoc";
    description = "Conversion between markup formats";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})