2011-12-29 17:42:08 +01:00
|
|
|
{ cabal, attoparsec, attoparsecConduit, blazeBuilder
|
2012-08-09 12:10:53 +02:00
|
|
|
, blazeBuilderConduit, blazeHtml, blazeMarkup, conduit, dataDefault
|
|
|
|
, failure, monadControl, resourcet, systemFilepath, text
|
|
|
|
, transformers, xmlTypes
|
2011-12-29 17:42:08 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "xml-conduit";
|
2012-08-09 12:10:53 +02:00
|
|
|
version = "1.0.3";
|
|
|
|
sha256 = "1pci21zwdclv018fk5hjfmif2wg6zfm9b4g1w3srgm6wdh5013r7";
|
2011-12-29 17:42:08 +01:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
attoparsec attoparsecConduit blazeBuilder blazeBuilderConduit
|
2012-08-09 12:10:53 +02:00
|
|
|
blazeHtml blazeMarkup conduit dataDefault failure monadControl
|
|
|
|
resourcet systemFilepath text transformers xmlTypes
|
2011-12-29 17:42:08 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/snoyberg/xml";
|
|
|
|
description = "Pure-Haskell utilities for dealing with XML with the conduit package";
|
|
|
|
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 ];
|
2011-12-29 17:42:08 +01:00
|
|
|
};
|
|
|
|
})
|