2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, binary, blazeHtml, citeprocHs, cryptohash, filepath
|
2012-02-14 17:00:37 +00:00
|
|
|
, hamlet, mtl, pandoc, parsec, regexBase, regexTdfa, snapCore
|
|
|
|
, snapServer, tagsoup, time
|
2011-08-09 23:00:20 +00:00
|
|
|
}:
|
2010-09-13 10:30:54 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2010-09-13 10:30:54 +00:00
|
|
|
pname = "hakyll";
|
2012-04-16 12:07:58 +00:00
|
|
|
version = "3.2.7.2";
|
|
|
|
sha256 = "1l37w3q2jhcxjkq3h0nh8hl21vscgvsj6jkkd2hni62kfzfrgqhw";
|
2011-08-09 23:00:20 +00:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
binary blazeHtml citeprocHs cryptohash filepath hamlet mtl pandoc
|
|
|
|
parsec regexBase regexTdfa snapCore snapServer tagsoup time
|
2011-08-07 18:23:15 +00:00
|
|
|
];
|
2010-09-13 10:30:54 +00:00
|
|
|
meta = {
|
2011-08-07 18:23:15 +00:00
|
|
|
homepage = "http://jaspervdj.be/hakyll";
|
|
|
|
description = "A static website compiler library";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-09-13 10:30:54 +00:00
|
|
|
};
|
|
|
|
})
|