about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/pandoc/default.nix
blob: 455baa9ee1d331febef556f5eb81dd59ebbc7a98 (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
{ cabal, base64Bytestring, citeprocHs, dlist, extensibleExceptions
, highlightingKate, HTTP, json, mtl, network, pandocTypes, parsec
, random, syb, tagsoup, texmath, utf8String, xhtml, xml, zipArchive
}:

cabal.mkDerivation (self: {
  pname = "pandoc";
  version = "1.8.2.1";
  sha256 = "0cwly0j2rj46h654iwl04l6jkhk6rrhynqvrdnq47067n9vm60pi";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    base64Bytestring citeprocHs dlist extensibleExceptions
    highlightingKate HTTP json mtl network pandocTypes parsec random
    syb tagsoup texmath utf8String xhtml xml zipArchive
  ];
  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
    ];
  };
})