2012-05-28 03:23:20 -07:00
|
|
|
{ cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cryptohash
|
2012-08-10 02:48:20 -07:00
|
|
|
, filepath, hamlet, lrucache, mtl, pandoc, parsec, regexBase
|
|
|
|
, regexTdfa, snapCore, snapServer, tagsoup, text, 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-12-03 07:11:05 -08:00
|
|
|
version = "3.5.2.0";
|
|
|
|
sha256 = "088qhzycpz003qa4b7hnn6frgmidk6219icii04ap964fkw0mqn0";
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2012-05-28 03:23:20 -07:00
|
|
|
binary blazeHtml blazeMarkup citeprocHs cryptohash filepath hamlet
|
2012-08-10 02:48:20 -07:00
|
|
|
lrucache mtl pandoc parsec regexBase regexTdfa snapCore snapServer
|
|
|
|
tagsoup text time
|
2011-08-07 11:23:15 -07:00
|
|
|
];
|
2012-12-10 03:43:40 -08:00
|
|
|
jailbreak = true;
|
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;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-09-13 03:30:54 -07:00
|
|
|
};
|
|
|
|
})
|