2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, text }:
|
2010-09-13 11:30:54 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2010-09-13 11:30:54 +01:00
|
|
|
pname = "blaze-builder";
|
2013-12-10 11:21:53 +00:00
|
|
|
version = "0.3.3.2";
|
|
|
|
sha256 = "038ig1a1iz0hc36l53f5g7h6aiz7b1lggq1d04y3ql9a0553vd40";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ text ];
|
2010-09-13 11:30:54 +01:00
|
|
|
meta = {
|
2011-08-10 00:00:20 +01:00
|
|
|
homepage = "http://github.com/meiersi/blaze-builder";
|
2011-08-11 14:03:51 +01:00
|
|
|
description = "Efficient buffered output";
|
2011-08-10 00:00:20 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-09-13 11:30:54 +01:00
|
|
|
};
|
|
|
|
})
|