nixpkgs/pkgs/development/libraries/haskell/gitit/default.nix
Andres Löh 934b429725 Updated gitit plus dependencies.
svn path=/nixpkgs/trunk/; revision=21108
2010-04-15 21:10:06 +00:00

24 lines
780 B
Nix

{cabal, happstackServer, happstackUtil, HStringTemplate, HTTP,
SHA, cgi, datetime,
filestore, highlightingKate, safe, mtl, network, pandoc, parsec,
recaptcha, utf8String, xhtml, zlib, ConfigFile, url,
cautiousFile, feed}:
cabal.mkDerivation (self : {
pname = "gitit";
version = "0.7.3.5";
sha256 = "50cf6b853d439904e54884660eba6ffdc31b938e077fd0d9457fba972d4bde9f";
propagatedBuildInputs = [
HStringTemplate happstackServer happstackUtil HTTP SHA cgi datetime
filestore highlightingKate safe
mtl network pandoc parsec recaptcha utf8String xhtml zlib ConfigFile
url cautiousFile feed
];
meta = {
description = "Wiki using HAppS, git or darcs, and pandoc";
license = "GPL";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})