05d92999a0
- HDBC-postgresql updated to version 2.3.2.1 - HsOpenSSL updated to version 0.10.1.3 - hledger-web updated to version 0.17.1 - persistent updated to version 0.8.0.2 - xml-conduit updated to version 0.5.3.1 - haddock: added version 2.10.0 svn path=/nixpkgs/trunk/; revision=32799
26 lines
848 B
Nix
26 lines
848 B
Nix
{ cabal, attoparsec, attoparsecConduit, blazeBuilder
|
|
, blazeBuilderConduit, conduit, dataDefault, failure, monadControl
|
|
, systemFilepath, text, transformers, xmlTypes
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "xml-conduit";
|
|
version = "0.5.3.1";
|
|
sha256 = "124c88x3ww1414c7s3wx7z1kqy37m9mwihiwyamgz25lg502n8gb";
|
|
buildDepends = [
|
|
attoparsec attoparsecConduit blazeBuilder blazeBuilderConduit
|
|
conduit dataDefault failure monadControl systemFilepath text
|
|
transformers xmlTypes
|
|
];
|
|
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;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|