15 lines
538 B
Nix
15 lines
538 B
Nix
{ cabal, attoparsec, conduit, text, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "attoparsec-conduit";
|
|
version = "0.5.0.3";
|
|
sha256 = "1n35v7mq93marx6ayja7zfk2hib4whspvysf0a7hjikylp4lfydw";
|
|
buildDepends = [ attoparsec conduit text transformers ];
|
|
meta = {
|
|
homepage = "http://github.com/snoyberg/conduit";
|
|
description = "Consume attoparsec parsers via conduit";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|