[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50835] [PATCH 4/8] gnu: Add ghc-libxml-sax.
From: |
Stephen Paul Weber |
Subject: |
[bug#50835] [PATCH 4/8] gnu: Add ghc-libxml-sax. |
Date: |
Sun, 26 Sep 2021 21:10:29 -0500 |
* gnu/packages/haskell-xyz.scm (ghc-libxml-sax): New variable.
---
gnu/packages/haskell-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 55efd9da2b..0e00bc0605 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -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)))
--
2.20.1
- [bug#50835] [PATCH 0/8] New Haskell packages: cache, redis client, xmpp, Stephen Paul Weber, 2021/09/26
- [bug#50835] [PATCH 1/8] gnu: Add ghc-cache., Stephen Paul Weber, 2021/09/26
- [bug#50835] [PATCH 2/8] gnu: Add ghc-scanner., Stephen Paul Weber, 2021/09/26
- [bug#50835] [PATCH 3/8] gnu: Add ghc-hedis., Stephen Paul Weber, 2021/09/26
- [bug#50835] [PATCH 6/8] gnu: Add ghc-gnutls., Stephen Paul Weber, 2021/09/26
- [bug#50835] [PATCH 4/8] gnu: Add ghc-libxml-sax.,
Stephen Paul Weber <=
- [bug#50835] [PATCH 5/8] gnu: Add ghc-gsasl., Stephen Paul Weber, 2021/09/26
- [bug#50835] [PATCH 7/8] gnu: Add ghc-gnuidn., Stephen Paul Weber, 2021/09/26
- [bug#50835] [PATCH 8/8] gnu: Add ghc-network-protocol-xmpp., Stephen Paul Weber, 2021/09/26