2011-12-29 16:42:08 +00:00
|
|
|
{ cabal, attoparsec, attoparsecConduit, blazeBuilder
|
2014-03-30 21:07:18 +01:00
|
|
|
, blazeBuilderConduit, blazeHtml, blazeMarkup, conduit
|
|
|
|
, conduitExtra, dataDefault, 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-30 21:07:18 +01:00
|
|
|
version = "1.2.0.1";
|
|
|
|
sha256 = "0ry3h1csblssv2x8b63hvl2gqc0wyzyqbvp6iyisrk77wkz72jw9";
|
2011-12-29 16:42:08 +00:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
attoparsec attoparsecConduit blazeBuilder blazeBuilderConduit
|
2014-03-30 21:07:18 +01:00
|
|
|
blazeHtml blazeMarkup conduit conduitExtra 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 = [
|
2014-03-30 21:07:18 +01:00
|
|
|
blazeMarkup conduit hspec HUnit resourcet text transformers
|
|
|
|
xmlTypes
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
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
|
|
|
};
|
|
|
|
})
|