2011-11-25 13:44:48 +00:00
|
|
|
{ cabal, binary, blazeHtml, citeprocHs, cryptohash, hamlet, mtl
|
|
|
|
, pandoc, parsec, regexBase, regexPcre, snapCore, snapServer
|
|
|
|
, tagsoup, 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";
|
2011-12-10 22:30:53 +00:00
|
|
|
version = "3.2.3.2";
|
|
|
|
sha256 = "0410gg8sdnw0iyhqrw1wfv9abbrv7r6awgvlhqds17vnrdxxk2w8";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2011-11-25 13:44:48 +00:00
|
|
|
binary blazeHtml citeprocHs cryptohash hamlet mtl pandoc parsec
|
|
|
|
regexBase regexPcre snapCore snapServer tagsoup 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;
|
2011-08-07 19:23:15 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-10 00:00:20 +01:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2011-08-07 19:23:15 +01:00
|
|
|
];
|
2010-09-13 11:30:54 +01:00
|
|
|
};
|
|
|
|
})
|