2013-01-17 11:19:09 +01:00
|
|
|
{ cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cmdargs
|
|
|
|
, cryptohash, deepseq, filepath, httpConduit, httpTypes, lrucache
|
|
|
|
, mtl, pandoc, parsec, random, regexBase, regexTdfa, snapCore
|
|
|
|
, snapServer, tagsoup, text, 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";
|
2013-01-25 14:52:04 +01:00
|
|
|
version = "4.1.2.1";
|
|
|
|
sha256 = "1d9bbqy1dix60w72zc3g4y7454avngfyl2i8gj99bdqin2wwcgp8";
|
2013-01-17 11:19:09 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2013-01-17 11:19:09 +01:00
|
|
|
binary blazeHtml blazeMarkup citeprocHs cmdargs cryptohash deepseq
|
|
|
|
filepath httpConduit httpTypes lrucache mtl pandoc parsec random
|
|
|
|
regexBase regexTdfa snapCore snapServer tagsoup text 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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-09-13 12:30:54 +02:00
|
|
|
};
|
|
|
|
})
|