2011-08-09 23:00:20 +00:00
|
|
|
{ cabal, attoparsecText, attoparsecTextEnumerator, blazeBuilder
|
2011-09-05 17:29:41 +00:00
|
|
|
, blazeBuilderEnumerator, dataDefault, enumerator, failure, text
|
|
|
|
, transformers, xmlTypes
|
2011-08-09 23:00:20 +00:00
|
|
|
}:
|
2011-08-07 22:51:22 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 22:51:22 +00:00
|
|
|
pname = "xml-enumerator";
|
2011-10-05 17:23:21 +00:00
|
|
|
version = "0.4.2.1";
|
|
|
|
sha256 = "0xz0a4dk94zg0sm0gy90ymmhzrsdvmqvl3qw2xycys6pzmg51im7";
|
2011-08-09 23:00:20 +00:00
|
|
|
buildDepends = [
|
2011-08-07 22:51:22 +00:00
|
|
|
attoparsecText attoparsecTextEnumerator blazeBuilder
|
2011-09-05 17:29:41 +00:00
|
|
|
blazeBuilderEnumerator dataDefault enumerator failure text
|
|
|
|
transformers xmlTypes
|
2011-08-07 22:51:22 +00:00
|
|
|
];
|
|
|
|
meta = {
|
2011-09-05 17:29:41 +00:00
|
|
|
homepage = "http://github.com/snoyberg/xml";
|
2011-08-11 13:03:51 +00:00
|
|
|
description = "Pure-Haskell utilities for dealing with XML with the enumerator package";
|
2011-08-07 22:51:22 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-09 23:00:20 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-07 22:51:22 +00:00
|
|
|
};
|
|
|
|
})
|