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