hakyll: updated to version 3.2.0.5

svn path=/nixpkgs/trunk/; revision=28243
This commit is contained in:
Peter Simons 2011-08-07 18:23:15 +00:00
parent a2092b82bd
commit 45cc8034ff

View File

@ -1,17 +1,22 @@
{cabal, binary, blazeHtml, hamlet, hopenssl, mtl, network, pandoc, regexBase {cabal, binary, blazeHtml, hamlet, hopenssl, mtl, pandoc, parsec,
, regexPCRE, snapCore, snapServer, strictConcurrency}: regexBase, regexPcre, snapCore, snapServer, tagsoup} :
cabal.mkDerivation (self : { cabal.mkDerivation (self : {
pname = "hakyll"; pname = "hakyll";
version = "3.2.0.3"; version = "3.2.0.5";
sha256 = "0biy9p662anhhlmwa502iy8cck597q0vlwj57l6cj8kpyxj4g0lz"; sha256 = "1rwmdkzwshhi6b27zff42gg65vds866l68h33p4kn6pq1rns3bz4";
propagatedBuildInputs = propagatedBuildInputs = [
[ binary blazeHtml hamlet hopenssl mtl network pandoc regexBase binary blazeHtml hamlet hopenssl mtl pandoc parsec regexBase
regexPCRE snapCore snapServer strictConcurrency regexPcre snapCore snapServer tagsoup
]; ];
meta = { meta = {
description = "A simple static site generator library"; homepage = "http://jaspervdj.be/hakyll";
license = "BSD"; description = "A static website compiler library";
maintainers = [self.stdenv.lib.maintainers.andres]; license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [
self.stdenv.lib.maintainers.simons
self.stdenv.lib.maintainers.andres
];
}; };
}) })