nixpkgs/pkgs/development/libraries/haskell/hakyll/default.nix
Peter Simons 45cc8034ff hakyll: updated to version 3.2.0.5
svn path=/nixpkgs/trunk/; revision=28243
2011-08-07 18:23:15 +00:00

23 lines
735 B
Nix

{cabal, binary, blazeHtml, hamlet, hopenssl, mtl, pandoc, parsec,
regexBase, regexPcre, snapCore, snapServer, tagsoup} :
cabal.mkDerivation (self : {
pname = "hakyll";
version = "3.2.0.5";
sha256 = "1rwmdkzwshhi6b27zff42gg65vds866l68h33p4kn6pq1rns3bz4";
propagatedBuildInputs = [
binary blazeHtml hamlet hopenssl mtl pandoc parsec regexBase
regexPcre snapCore snapServer tagsoup
];
meta = {
homepage = "http://jaspervdj.be/hakyll";
description = "A static website compiler library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [
self.stdenv.lib.maintainers.simons
self.stdenv.lib.maintainers.andres
];
};
})