2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, binary, blazeHtml, citeprocHs, cryptohash, filepath
|
2012-02-14 18:00:37 +01:00
|
|
|
, hamlet, mtl, pandoc, parsec, regexBase, regexTdfa, snapCore
|
|
|
|
, snapServer, 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-04-03 20:37:58 +02:00
|
|
|
version = "3.2.7.1";
|
|
|
|
sha256 = "07d7a8l2phb787wgqyh1rci1v9hzwxw35arg03hkal072sacif0c";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
binary blazeHtml citeprocHs cryptohash filepath hamlet mtl pandoc
|
|
|
|
parsec regexBase regexTdfa snapCore snapServer tagsoup time
|
2011-08-07 20:23:15 +02:00
|
|
|
];
|
2012-04-05 18:51:59 +02:00
|
|
|
patchPhase = ''
|
|
|
|
sed -i 's|hamlet >= 0.10.3 && < 0.11|hamlet|' hakyll.cabal
|
|
|
|
'';
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-09-13 12:30:54 +02:00
|
|
|
};
|
|
|
|
})
|