2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, ConfigFile, HStringTemplate, HTTP, SHA, cgi, feed
|
|
|
|
, filestore, ghcPaths, happstackServer, happstackUtil
|
|
|
|
, highlightingKate, hslogger, json, mtl, network, pandoc
|
|
|
|
, pandocTypes, parsec, recaptcha, safe, syb, time, url, utf8String
|
|
|
|
, xhtml, xml, xssSanitize, zlib
|
|
|
|
}:
|
2009-07-18 17:25:28 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-07-18 17:25:28 +02:00
|
|
|
pname = "gitit";
|
2011-08-07 20:23:52 +02:00
|
|
|
version = "0.8.0.1";
|
|
|
|
sha256 = "0y2gcxlbb44vflj0jl3zkbsn47n7nccikxwdw6ccf9kxgcmrz0zy";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
|
|
|
ConfigFile HStringTemplate HTTP SHA cgi feed filestore ghcPaths
|
2011-08-07 20:23:52 +02:00
|
|
|
happstackServer happstackUtil highlightingKate hslogger json mtl
|
2011-08-10 01:00:20 +02:00
|
|
|
network pandoc pandocTypes parsec recaptcha safe syb time url
|
|
|
|
utf8String xhtml xml xssSanitize zlib
|
2010-04-15 23:10:06 +02:00
|
|
|
];
|
2009-07-18 17:25:28 +02:00
|
|
|
meta = {
|
2011-08-07 20:23:52 +02:00
|
|
|
homepage = "http://github.com/jgm/gitit/tree/master";
|
|
|
|
description = "Wiki using happstack, git or darcs, and pandoc.";
|
2010-04-15 23:10:06 +02:00
|
|
|
license = "GPL";
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-07 20:23:52 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-10 01:00:20 +02:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2011-08-07 20:23:52 +02:00
|
|
|
];
|
2009-07-18 17:25:28 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|