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-03 16:33:49 +00:00
|
|
|
version = "3.2.3.1";
|
|
|
|
sha256 = "1mmzi8d5a3k4s81h5ciis32g8khxvpafps6pql65lvpp9yhicxdz";
|
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
|
|
|
};
|
|
|
|
})
|