2013-01-17 02:19:09 -08:00
|
|
|
{ cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cmdargs
|
2013-03-25 03:40:29 -07:00
|
|
|
, cryptohash, dataDefault, deepseq, filepath, httpConduit
|
|
|
|
, httpTypes, HUnit, lrucache, mtl, pandoc, parsec, QuickCheck
|
|
|
|
, random, regexBase, regexTdfa, snapCore, snapServer, tagsoup
|
|
|
|
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2, 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";
|
2013-03-25 03:40:29 -07:00
|
|
|
version = "4.2.2.0";
|
|
|
|
sha256 = "0kz8v2ip0hmvqnrxgv44g2863z1dql88razl7aa3fw01q56ihz0y";
|
2013-01-17 02:19:09 -08:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2013-03-25 03:40:29 -07:00
|
|
|
binary blazeHtml blazeMarkup citeprocHs cmdargs cryptohash
|
|
|
|
dataDefault deepseq filepath httpConduit httpTypes lrucache mtl
|
|
|
|
pandoc parsec random regexBase regexTdfa snapCore snapServer
|
|
|
|
tagsoup text time
|
2011-08-07 11:23:15 -07:00
|
|
|
];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [
|
2013-03-25 03:40:29 -07:00
|
|
|
binary blazeHtml blazeMarkup citeprocHs cmdargs cryptohash
|
|
|
|
dataDefault deepseq filepath httpConduit httpTypes HUnit lrucache
|
|
|
|
mtl pandoc parsec QuickCheck random regexBase regexTdfa snapCore
|
|
|
|
snapServer tagsoup testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2 text time
|
2013-02-24 13:09:07 -08:00
|
|
|
];
|
2013-03-08 04:36:58 -08:00
|
|
|
doCheck = false;
|
2013-04-06 01:32:41 -07:00
|
|
|
patchPhase = ''
|
|
|
|
sed -i -e 's|cryptohash .*,|cryptohash,|' hakyll.cabal
|
|
|
|
'';
|
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;
|
2013-03-23 06:57:25 -07:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-09-13 03:30:54 -07:00
|
|
|
};
|
|
|
|
})
|