2012-05-28 11:23:20 +01:00
|
|
|
{ cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cryptohash
|
2012-08-10 10:48:20 +01:00
|
|
|
, filepath, hamlet, lrucache, mtl, pandoc, parsec, regexBase
|
|
|
|
, regexTdfa, snapCore, snapServer, tagsoup, text, time
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2010-09-13 11:30:54 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2010-09-13 11:30:54 +01:00
|
|
|
pname = "hakyll";
|
2013-01-16 11:42:13 +00:00
|
|
|
version = "3.5.3.0";
|
|
|
|
sha256 = "1r8vz42lxnnxx875jnf0ii9x99g7wz2fmknscxvm40prp2df1z6v";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2012-05-28 11:23:20 +01:00
|
|
|
binary blazeHtml blazeMarkup citeprocHs cryptohash filepath hamlet
|
2012-08-10 10:48:20 +01:00
|
|
|
lrucache mtl pandoc parsec regexBase regexTdfa snapCore snapServer
|
|
|
|
tagsoup text time
|
2011-08-07 19:23:15 +01:00
|
|
|
];
|
2010-09-13 11:30:54 +01:00
|
|
|
meta = {
|
2011-08-07 19:23:15 +01:00
|
|
|
homepage = "http://jaspervdj.be/hakyll";
|
|
|
|
description = "A static website compiler library";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-09-13 11:30:54 +01:00
|
|
|
};
|
|
|
|
})
|