summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/gitit/default.nix
blob: bce6841d389ccc4f4da123da170a478c88911721 (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, ConfigFile, HStringTemplate, HTTP, SHA, cgi, feed,
 filestore, ghc, ghcPaths, happstackServer, happstackUtil,
 highlightingKate, hslogger, json, mtl, network, pandoc,
 pandocTypes, parsec, recaptcha, safe, syb, url, utf8String, xhtml,
 xml, xssSanitize, zlib} :

cabal.mkDerivation (self : {
  pname = "gitit";
  version = "0.8.0.1";
  sha256 = "0y2gcxlbb44vflj0jl3zkbsn47n7nccikxwdw6ccf9kxgcmrz0zy";
  propagatedBuildInputs = [
    ConfigFile HStringTemplate HTTP SHA cgi feed filestore ghc ghcPaths
    happstackServer happstackUtil highlightingKate hslogger json mtl
    network pandoc pandocTypes parsec recaptcha safe syb url utf8String
    xhtml xml xssSanitize zlib
  ];
  meta = {
    homepage = "http://github.com/jgm/gitit/tree/master";
    description = "Wiki using happstack, git or darcs, and pandoc.";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.simons
      self.stdenv.lib.maintainers.simons
      self.stdenv.lib.maintainers.andres
    ];
  };
})