969a0acdc2
svn path=/nixpkgs/trunk/; revision=29674
26 lines
830 B
Nix
26 lines
830 B
Nix
{ cabal, attoparsecText, attoparsecTextEnumerator, blazeBuilder
|
|
, blazeBuilderEnumerator, dataDefault, enumerator, failure, text
|
|
, transformers, xmlTypes
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "xml-enumerator";
|
|
version = "0.4.2.1";
|
|
sha256 = "0xz0a4dk94zg0sm0gy90ymmhzrsdvmqvl3qw2xycys6pzmg51im7";
|
|
buildDepends = [
|
|
attoparsecText attoparsecTextEnumerator blazeBuilder
|
|
blazeBuilderEnumerator dataDefault enumerator failure text
|
|
transformers xmlTypes
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/snoyberg/xml";
|
|
description = "Pure-Haskell utilities for dealing with XML with the enumerator package";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|