2011-11-25 05:44:48 -08:00
|
|
|
{ cabal, binary, blazeHtml, citeprocHs, cryptohash, hamlet, mtl
|
|
|
|
, pandoc, parsec, regexBase, regexPcre, snapCore, snapServer
|
|
|
|
, tagsoup, time
|
2011-08-09 16:00:20 -07:00
|
|
|
}:
|
2010-09-13 03:30:54 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2010-09-13 03:30:54 -07:00
|
|
|
pname = "hakyll";
|
2012-01-07 13:51:36 -08:00
|
|
|
version = "3.2.4.0";
|
|
|
|
sha256 = "1hyvvcq4hvbwz8zaswi8949sqzjkby6754b0y5zp2cpax2ykkbgx";
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2011-11-25 05:44:48 -08:00
|
|
|
binary blazeHtml citeprocHs cryptohash hamlet mtl pandoc parsec
|
|
|
|
regexBase regexPcre snapCore snapServer tagsoup time
|
2011-08-07 11:23:15 -07:00
|
|
|
];
|
2010-09-13 03:30:54 -07:00
|
|
|
meta = {
|
2011-08-07 11:23:15 -07:00
|
|
|
homepage = "http://jaspervdj.be/hakyll";
|
|
|
|
description = "A static website compiler library";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-07 11:23:15 -07:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-09 16:00:20 -07:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2011-08-07 11:23:15 -07:00
|
|
|
];
|
2010-09-13 03:30:54 -07:00
|
|
|
};
|
|
|
|
})
|