13a10c3e54
- 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
16 lines
520 B
Nix
16 lines
520 B
Nix
{ cabal, blazeBuilder, blazeMarkup, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "blaze-html";
|
|
version = "0.5.0.0";
|
|
sha256 = "0cfvdf50jbm6w277jf69ac57nbkgkn2ifcp6r2amd3qdbmdgqkwj";
|
|
buildDepends = [ blazeBuilder blazeMarkup 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 ];
|
|
};
|
|
})
|