2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, text }:
|
2010-09-13 12:30:54 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-09-13 12:30:54 +02:00
|
|
|
pname = "blaze-builder";
|
2011-07-07 21:08:51 +02:00
|
|
|
version = "0.3.0.1";
|
|
|
|
sha256 = "1p3xlifcr7v987zx8l2sppn9yydph332mn1xxk0yfi78a6386nfb";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [ text ];
|
2010-09-13 12:30:54 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://github.com/meiersi/blaze-builder";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Efficient buffered output";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-09-13 12:30:54 +02:00
|
|
|
};
|
|
|
|
})
|