- generic-deriving: updated to version 1.2.1 - ghc-mod: updated to version 1.10.17 - gitit: updated to version 0.10.0.1 - graphviz: updated to version 2999.13.0.3 - hsemail: updated to version 1.7.2 - split: updated to version 0.1.4.3 svn path=/nixpkgs/trunk/; revision=34384
		
			
				
	
	
		
			29 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ cabal, base64Bytestring, blazeHtml, cgi, ConfigFile, feed
 | 
						|
, filepath, filestore, ghcPaths, happstackServer, highlightingKate
 | 
						|
, hslogger, HStringTemplate, HTTP, json, mtl, network, pandoc
 | 
						|
, pandocTypes, parsec, random, recaptcha, safe, SHA, syb, tagsoup
 | 
						|
, text, time, url, utf8String, xhtml, xml, xssSanitize, zlib
 | 
						|
}:
 | 
						|
 | 
						|
cabal.mkDerivation (self: {
 | 
						|
  pname = "gitit";
 | 
						|
  version = "0.10.0.1";
 | 
						|
  sha256 = "0dx4jq7j0s6h5lfl8qrr4qnyb3j0cnnc1c786yf8kcmhk04n028f";
 | 
						|
  isLibrary = true;
 | 
						|
  isExecutable = true;
 | 
						|
  buildDepends = [
 | 
						|
    base64Bytestring blazeHtml cgi ConfigFile feed filepath filestore
 | 
						|
    ghcPaths happstackServer highlightingKate hslogger HStringTemplate
 | 
						|
    HTTP json mtl network pandoc pandocTypes parsec random recaptcha
 | 
						|
    safe SHA syb tagsoup text time url utf8String xhtml xml xssSanitize
 | 
						|
    zlib
 | 
						|
  ];
 | 
						|
  meta = {
 | 
						|
    homepage = "http://gitit.net";
 | 
						|
    description = "Wiki using happstack, git or darcs, and pandoc";
 | 
						|
    license = "GPL";
 | 
						|
    platforms = self.ghc.meta.platforms;
 | 
						|
    maintainers = [ self.stdenv.lib.maintainers.andres ];
 | 
						|
  };
 | 
						|
})
 |