23 lines
773 B
Nix
23 lines
773 B
Nix
{ cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cryptohash
|
|
, filepath, hamlet, lrucache, mtl, pandoc, parsec, regexBase
|
|
, regexTdfa, snapCore, snapServer, tagsoup, text, time
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hakyll";
|
|
version = "3.4.1.0";
|
|
sha256 = "028wq61kvh2nkz8dxbpcnvic1vlqnz1a2l1xrvficmvk25qyqmvy";
|
|
buildDepends = [
|
|
binary blazeHtml blazeMarkup citeprocHs cryptohash filepath hamlet
|
|
lrucache mtl pandoc parsec regexBase regexTdfa snapCore snapServer
|
|
tagsoup text time
|
|
];
|
|
meta = {
|
|
homepage = "http://jaspervdj.be/hakyll";
|
|
description = "A static website compiler library";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|