25 lines
897 B
Nix
25 lines
897 B
Nix
{ cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cmdargs
|
|
, cryptohash, deepseq, filepath, httpConduit, httpTypes, lrucache
|
|
, mtl, pandoc, parsec, random, regexBase, regexTdfa, snapCore
|
|
, snapServer, tagsoup, text, time
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hakyll";
|
|
version = "4.1.2.1";
|
|
sha256 = "1d9bbqy1dix60w72zc3g4y7454avngfyl2i8gj99bdqin2wwcgp8";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
binary blazeHtml blazeMarkup citeprocHs cmdargs cryptohash deepseq
|
|
filepath httpConduit httpTypes lrucache mtl pandoc parsec random
|
|
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 ];
|
|
};
|
|
})
|