mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
591 B
Nix
16 lines
591 B
Nix
{ cabal, blazeBuilder, enumerator, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "blaze-builder-enumerator";
|
|
version = "0.2.0.5";
|
|
sha256 = "0bbbv9wwzw9ss3d02mszdzxzhg6pcrnpwir9bvby7xkmfqpyffaa";
|
|
buildDepends = [ blazeBuilder enumerator transformers ];
|
|
meta = {
|
|
homepage = "https://github.com/meiersi/blaze-builder-enumerator";
|
|
description = "Enumeratees for the incremental conversion of builders to bytestrings";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|