2011-11-25 14:44:48 +01:00
|
|
|
{ cabal, binary, blazeHtml, citeprocHs, cryptohash, hamlet, mtl
|
2012-02-14 17:58:38 +01:00
|
|
|
, pandoc, parsec, regexBase, regexTdfa, snapCore, snapServer
|
2011-11-25 14:44:48 +01:00
|
|
|
, tagsoup, time
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2010-09-13 12:30:54 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-09-13 12:30:54 +02:00
|
|
|
pname = "hakyll";
|
2012-02-14 17:58:38 +01:00
|
|
|
version = "3.2.6.1";
|
|
|
|
sha256 = "0chpg04rsp8lxzdj43wqs3wyc7i70hfi3raxdar6bhwxhfxgj4wn";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2011-11-25 14:44:48 +01:00
|
|
|
binary blazeHtml citeprocHs cryptohash hamlet mtl pandoc parsec
|
2012-02-14 17:58:38 +01:00
|
|
|
regexBase regexTdfa snapCore snapServer tagsoup time
|
2011-08-07 20:23:15 +02:00
|
|
|
];
|
2010-09-13 12:30:54 +02:00
|
|
|
meta = {
|
2011-08-07 20:23:15 +02:00
|
|
|
homepage = "http://jaspervdj.be/hakyll";
|
|
|
|
description = "A static website compiler library";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-07 20:23:15 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-10 01:00:20 +02:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2011-08-07 20:23:15 +02:00
|
|
|
];
|
2010-09-13 12:30:54 +02:00
|
|
|
};
|
|
|
|
})
|