2011-12-29 16:42:08 +00:00
|
|
|
{ cabal, attoparsec, attoparsecConduit, blazeBuilder
|
2012-08-09 11:10:53 +01:00
|
|
|
, blazeBuilderConduit, blazeHtml, blazeMarkup, conduit, dataDefault
|
2014-03-27 12:17:53 +00:00
|
|
|
, deepseq, hspec, HUnit, monadControl, resourcet, systemFilepath
|
|
|
|
, text, transformers, xmlTypes
|
2011-12-29 16:42:08 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "xml-conduit";
|
2014-03-27 12:17:53 +00:00
|
|
|
version = "1.2.0";
|
|
|
|
sha256 = "0sh4f645ysj2dzd58a1b1y2pqqcg6khav27lgy2j3fqgm6mryxhj";
|
2011-12-29 16:42:08 +00:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
attoparsec attoparsecConduit blazeBuilder blazeBuilderConduit
|
2014-03-27 12:17:53 +00:00
|
|
|
blazeHtml blazeMarkup conduit dataDefault deepseq monadControl
|
|
|
|
resourcet systemFilepath text transformers xmlTypes
|
2011-12-29 16:42:08 +00:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
blazeMarkup conduit hspec HUnit text transformers xmlTypes
|
|
|
|
];
|
2011-12-29 16:42:08 +00: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;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-29 16:42:08 +00:00
|
|
|
};
|
|
|
|
})
|