diff options
author | Simon Josefsson <simon@josefsson.org> | 2021-05-03 13:49:33 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-05-05 16:56:44 +0200 |
commit | 9c3986ffafad113be1cc9061d1f6c56ef1a06647 (patch) | |
tree | 2cbd92980c83fd50c4a75b474bd30d2448723814 /gnu | |
parent | 561db254a5fd72578ea2a0b0a3e8303f0ef20d85 (diff) | |
download | guix-9c3986ffafad113be1cc9061d1f6c56ef1a06647.tar.gz guix-9c3986ffafad113be1cc9061d1f6c56ef1a06647.zip |
gnu: Add xmlsec-openssl.
* gnu/packages/xml.scm (xmlsec-openssl): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xml.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 04cb09779b..931698a575 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1253,6 +1253,14 @@ Libxml2).") '(#:configure-flags '("--disable-md5"))) (synopsis "XML Security Library (using NSS instead of GnuTLS)"))) +(define-public xmlsec-openssl + (package/inherit xmlsec + (name "xmlsec-openssl") + (inputs + `(("openssl" ,openssl) + ("libltdl" ,libltdl))) + (synopsis "XML Security Library (using OpenSSL instead of GnuTLS)"))) + (define-public minixml (package (name "minixml") |