58f3a6e25e
- accelerate-cuda: updated to version 0.12.1.0 - accelerate-examples: updated to version 0.12.1.0 - accelerate-io: updated to version 0.12.1.0 - accelerate: updated to version 0.12.1.0 - hakyll: updated to version 3.3.0.1 - pandoc: updated to version 1.9.4.1 - Vec: updated to version 0.9.9 svn path=/nixpkgs/trunk/; revision=34431
23 lines
754 B
Nix
23 lines
754 B
Nix
{ 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 ];
|
|
};
|
|
})
|