nixpkgs/pkgs/development/libraries/haskell/blaze-builder/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

16 lines
458 B
Nix

{ cabal, text }:
cabal.mkDerivation (self: {
pname = "blaze-builder";
version = "0.3.1.1";
sha256 = "1pnw5kjpyxf3mh72cb9a0f1qwpq3a2bkgqp1j3ny8l6nmzw0c9d1";
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 ];
};
})