15 lines
458 B
Nix
15 lines
458 B
Nix
{ cabal, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "blaze-builder";
|
|
version = "0.3.3.0";
|
|
sha256 = "0j6nrwcnpcr7c17cxw3v85m19q8z91wb6jir8c6kls5m321hwd63";
|
|
buildDepends = [ text ];
|
|
meta = {
|
|
homepage = "http://github.com/meiersi/blaze-builder";
|
|
description = "Efficient buffered output";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|