nixpkgs/pkgs/development/libraries/haskell/blaze-html/0.4.3.4.nix
Peter Simons 13a10c3e54 Updated Haskell packages.
- authenticate: updated to version 1.2.1.1
 - blaze-html: added version 0.5.0.0 (unused right now because happstack can't deal with it)
 - BNFC-meta: updated to version 0.3.0.2
 - graphviz: patched build to succeed with transformers 0.3.x
 - haskeline: updated to version 0.6.4.7
 - http-conduit: updated to version 1.4.1.3
 - numeric-prelude: updated to version 0.3.0.2
 - pandoc: updated to version 1.9.3

svn path=/nixpkgs/trunk/; revision=34087
2012-05-14 09:56:52 +00:00

16 lines
495 B
Nix

{ cabal, blazeBuilder, text }:
cabal.mkDerivation (self: {
pname = "blaze-html";
version = "0.4.3.4";
sha256 = "1xd8l28rriczd5zxgmjif393kjzqibrp68pfah0kknrjmc3ybn20";
buildDepends = [ blazeBuilder text ];
meta = {
homepage = "http://jaspervdj.be/blaze";
description = "A blazingly fast HTML combinator library for Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})