nixpkgs/pkgs/development/libraries/haskell/hakyll/default.nix

23 lines
754 B
Nix
Raw Normal View History

{ cabal, binary, blazeHtml, blazeMarkup, citeprocHs, cryptohash
, filepath, hamlet, mtl, pandoc, parsec, regexBase, regexTdfa
, snapCore, snapServer, tagsoup, text, time
}:
cabal.mkDerivation (self: {
pname = "hakyll";
version = "3.3.0.1";
sha256 = "1rymj7j97803hy7nv235m29m0rird1c0ik81mkaicdfiabkihmrq";
buildDepends = [
binary blazeHtml blazeMarkup citeprocHs cryptohash filepath hamlet
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 ];
};
})