nixpkgs/pkgs/development/libraries/haskell/hakyll/default.nix
Peter Simons 53510bff9a haskell-hakyll: updated to version 3.2.2.0
svn path=/nixpkgs/trunk/; revision=30563
2011-11-25 13:44:48 +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.2.0";
sha256 = "0z7q99j3zqhck085s99sbj1qksra3rsmwimf44j49b59nqrn50va";
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
];
};
})