nixpkgs/pkgs/development/libraries/haskell/hakyll/default.nix
Peter Simons 49009f72ce haskell-hakyll: updated to version 3.2.5.1
svn path=/nixpkgs/trunk/; revision=32025
2012-02-04 08:38:04 +00:00

25 lines
746 B
Nix

{ cabal, binary, blazeHtml, citeprocHs, cryptohash, hamlet, mtl
, pandoc, parsec, regexBase, regexPcre, snapCore, snapServer
, tagsoup, time
}:
cabal.mkDerivation (self: {
pname = "hakyll";
version = "3.2.5.1";
sha256 = "1vb3jqasf6j10fk8afwrbd85dc4k9dx6zls5c6wn0wnh87r5987x";
buildDepends = [
binary blazeHtml citeprocHs cryptohash hamlet mtl pandoc parsec
regexBase regexPcre snapCore snapServer tagsoup 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
self.stdenv.lib.maintainers.simons
];
};
})