@@ -15831,3 +15831,26 @@ TCP sockets are the default way to connect to a Redis server. For connections
to a server on the same machine, Unix domain sockets offer higher performance
than the standard TCP connection.")
(license license:bsd-3)))
+
+(define-public ghc-libxml-sax
+ (package
+ (name "ghc-libxml-sax")
+ (version "0.7.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/libxml-sax/libxml-sax-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32 "0lbdq6lmiyrnzk6gkx09vvp928wj8qnqnqfzy14mfv0drj21f54r"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-xml-types" ,ghc-xml-types)
+ ("libxml2" ,libxml2)))
+ (native-inputs `(("pkg-config" ,pkg-config)))
+ (home-page "https://hackage.haskell.org/package/libxml-sax")
+ (synopsis "Bindings for the libXML2 SAX interface")
+ (description "A very simple and direct binding to libXML2's SAX parser.")
+ (license license:expat)))