nixpkgs/pkgs/development/libraries/haskell/blaze-html/default.nix
Peter Simons d5b7235de1 Updated Haskell packages.
- blaze-html: updated to version 0.4.3.3
 - failure: updated 0.2.0.1
 - resourcet: updated to version 0.3.2
 - zlib-bindings: updated to version 0.1.0.1

svn path=/nixpkgs/trunk/; revision=33469
2012-03-29 11:17:28 +00:00

16 lines
495 B
Nix

{ cabal, blazeBuilder, text }:
cabal.mkDerivation (self: {
pname = "blaze-html";
version = "0.4.3.3";
sha256 = "0a3g4s4k85h2qvs2kcalv83ma4z5arqdydla64q5d1qlk9c99mzg";
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 ];
};
})