nixpkgs/pkgs/development/libraries/haskell/hakyll/default.nix
Andres Löh 5422838e56 Version bumps for hakyll and dependencies.
svn path=/nixpkgs/trunk/; revision=27638
2011-07-07 19:08:51 +00:00

18 lines
582 B
Nix

{cabal, binary, blazeHtml, hamlet, hopenssl, mtl, network, pandoc, regexBase
, regexPCRE, snapCore, snapServer, strictConcurrency}:
cabal.mkDerivation (self : {
pname = "hakyll";
version = "3.2.0.3";
sha256 = "0biy9p662anhhlmwa502iy8cck597q0vlwj57l6cj8kpyxj4g0lz";
propagatedBuildInputs =
[ binary blazeHtml hamlet hopenssl mtl network pandoc regexBase
regexPCRE snapCore snapServer strictConcurrency
];
meta = {
description = "A simple static site generator library";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})