nixpkgs/pkgs/development/libraries/haskell/blaze-html/default.nix
Andres Löh f89b676312 Upgraded Hakyll to 2.4.3.
I know, that's not the latest version, but Hakyll-3 is rather
different from Hakyll-2 and the upgrade would require more work.

svn path=/nixpkgs/trunk/; revision=26291
2011-03-13 08:46:54 +00:00

14 lines
378 B
Nix

{cabal, text, blazeBuilder}:
cabal.mkDerivation (self : {
pname = "blaze-html";
version = "0.4.1.0";
sha256 = "0a39wzfsb8lsr0z8c0s90n6pwmhjg6lihbxigk2c02vn5marzc4f";
propagatedBuildInputs = [text blazeBuilder];
meta = {
description = "A blazingly fast HTML combinator library";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})