69adc0d433
- gd: updated to version 3000.7.3 - hakyll: updated to version 3.2.6.2 - HaskellForMaths: updated to version 0.4.4 - haskell-src-meta: updated to version 0.5.1.1 - mwc-random: dropped obsolete version 0.10.0.1. - persistent-template: updated to version 0.8.2 - snap-core: updated to version 0.8.0.1 - snap-server: updated to version 0.8.0.1 - unordered-containers: dropped obsolete version 0.1.4.6. svn path=/nixpkgs/trunk/; revision=33255
24 lines
765 B
Nix
24 lines
765 B
Nix
{ cabal, binary, blazeHtml, citeprocHs, cryptohash, filepath
|
|
, hamlet, mtl, pandoc, parsec, regexBase, regexTdfa, snapCore
|
|
, snapServer, tagsoup, time
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hakyll";
|
|
version = "3.2.6.2";
|
|
sha256 = "07l2igpmr4kd47zk88hz2salzzc92dh7wpny6xr5pw5xf95lpx7p";
|
|
buildDepends = [
|
|
binary blazeHtml citeprocHs cryptohash filepath hamlet mtl pandoc
|
|
parsec regexBase regexTdfa 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
|
|
];
|
|
};
|
|
})
|