2013-01-17 10:19:09 +00:00
|
|
|
{ cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cmdargs
|
2013-02-24 21:09:07 +00:00
|
|
|
, cryptohash, deepseq, filepath, httpConduit, httpTypes, HUnit
|
|
|
|
, lrucache, mtl, pandoc, parsec, QuickCheck, random, regexBase
|
|
|
|
, regexTdfa, snapCore, snapServer, tagsoup, testFramework
|
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, text, 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";
|
2013-03-09 23:26:26 +00:00
|
|
|
version = "4.2.1.1";
|
|
|
|
sha256 = "072fl5k8fwmrx1rwb964cz0kn1hcyda13l597mqdmdi2ky5s5hf0";
|
2013-01-17 10:19:09 +00:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2013-01-17 10:19:09 +00: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 19:23:15 +01:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
binary blazeHtml blazeMarkup citeprocHs cmdargs cryptohash deepseq
|
|
|
|
filepath httpConduit httpTypes HUnit lrucache mtl pandoc parsec
|
2013-03-09 23:26:26 +00:00
|
|
|
QuickCheck random regexBase regexTdfa snapCore snapServer tagsoup
|
|
|
|
testFramework testFrameworkHunit testFrameworkQuickcheck2 text time
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
2013-03-09 23:26:26 +00:00
|
|
|
patchPhase = "sed -i -e 's|pandoc.*,|pandoc,|' hakyll.cabal";
|
2013-03-08 12:36:58 +00:00
|
|
|
doCheck = false;
|
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;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-09-13 11:30:54 +01:00
|
|
|
};
|
|
|
|
})
|