nixpkgs/pkgs/development/libraries/haskell/blaze-builder/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
348 B
Nix

{cabal, text}:
cabal.mkDerivation (self : {
pname = "blaze-builder";
version = "0.2.1.4";
sha256 = "0r0lj2whwa1v99gx59l56af06w704qvv1vhkxlca86h7iri4b262";
propagatedBuildInputs = [text];
meta = {
description = "Builder to efficiently append text";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})