2012-02-16 15:05:41 +01: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";
|
2012-01-29 17:24:00 +01:00
|
|
|
version = "0.3.1.0";
|
|
|
|
sha256 = "192pqmr6mcjnflqpvp93nycfbdi0ifab8ifvrxvmwbrdkiidvai6";
|
2012-02-16 15:05:41 +01: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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-09-13 12:30:54 +02:00
|
|
|
};
|
|
|
|
})
|