nixpkgs/pkgs/development/libraries/haskell/hakyll/default.nix
Peter Simons 6820803223 haskell-hakyll: updated to version 3.2.3.1
svn path=/nixpkgs/trunk/; revision=30717
2011-12-03 16:33:49 +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.3.1";
sha256 = "1mmzi8d5a3k4s81h5ciis32g8khxvpafps6pql65lvpp9yhicxdz";
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
];
};
})