2013-10-10 09:50:47 +00:00
|
|
|
{ cabal, binary, blazeHtml, blazeMarkup, cmdargs, cryptohash
|
|
|
|
, dataDefault, deepseq, filepath, fsnotify, httpConduit, httpTypes
|
|
|
|
, HUnit, lrucache, mtl, network, pandoc, pandocCiteproc, parsec
|
2013-06-19 07:27:55 +00:00
|
|
|
, QuickCheck, random, regexBase, regexTdfa, snapCore, snapServer
|
2013-06-13 08:43:40 +00:00
|
|
|
, systemFilepath, tagsoup, testFramework, testFrameworkHunit
|
2013-10-10 09:50:47 +00:00
|
|
|
, testFrameworkQuickcheck2, text, time
|
2011-08-09 23:00:20 +00:00
|
|
|
}:
|
2010-09-13 10:30:54 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2010-09-13 10:30:54 +00:00
|
|
|
pname = "hakyll";
|
2014-04-08 11:29:56 +00:00
|
|
|
version = "4.5.1.0";
|
|
|
|
sha256 = "0p78wscz9gwg1as49wjl49ydzbv972w6wmbmvhw1rfb9d5xana1i";
|
2013-01-17 10:19:09 +00:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2011-08-09 23:00:20 +00:00
|
|
|
buildDepends = [
|
2013-10-10 09:50:47 +00:00
|
|
|
binary blazeHtml blazeMarkup cmdargs cryptohash dataDefault deepseq
|
|
|
|
filepath fsnotify httpConduit httpTypes lrucache mtl network pandoc
|
|
|
|
pandocCiteproc parsec random regexBase regexTdfa snapCore
|
|
|
|
snapServer systemFilepath tagsoup text time
|
2011-08-07 18:23:15 +00:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2013-10-10 09:50:47 +00:00
|
|
|
binary blazeHtml blazeMarkup cmdargs cryptohash dataDefault deepseq
|
|
|
|
filepath fsnotify httpConduit httpTypes HUnit lrucache mtl network
|
|
|
|
pandoc pandocCiteproc parsec QuickCheck random regexBase regexTdfa
|
|
|
|
snapCore snapServer systemFilepath tagsoup testFramework
|
2013-06-13 08:43:40 +00:00
|
|
|
testFrameworkHunit testFrameworkQuickcheck2 text time
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
2013-10-10 09:50:47 +00:00
|
|
|
doCheck = false;
|
2014-05-10 11:59:21 +00:00
|
|
|
patchPhase = ''
|
|
|
|
sed -i -e 's|network .*,|network,|' hakyll.cabal
|
|
|
|
'';
|
2010-09-13 10:30:54 +00:00
|
|
|
meta = {
|
2011-08-07 18:23:15 +00:00
|
|
|
homepage = "http://jaspervdj.be/hakyll";
|
|
|
|
description = "A static website compiler library";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-06-19 07:27:55 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-09-13 10:30:54 +00:00
|
|
|
};
|
|
|
|
})
|