diff options
author | Sughosha <sughosha@disroot.org> | 2025-01-24 14:48:13 +0530 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2025-01-25 01:44:32 +0800 |
commit | 93898f55feb0db32628117fb7602fc19e80e35dd (patch) | |
tree | 57f92f726597a97ca9a136a0b4080a84b4f2a9ac | |
parent | 84bca75d6007ca4b127a54e39f30ffa7946c2e7f (diff) | |
download | guix-93898f55feb0db32628117fb7602fc19e80e35dd.tar.gz guix-93898f55feb0db32628117fb7602fc19e80e35dd.zip |
gnu: Add yaz.
* gnu/packages/networking.scm (yaz): New variable.
Change-Id: Ib18a68f58735d679a26108bd57f943caf4941884
-rw-r--r-- | gnu/packages/networking.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 295c2421ec..f50d4c81b2 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -65,6 +65,7 @@ ;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev> ;;; Copyright © 2024 Alexey Abramov <levenson@mmer.org> ;;; Copyright © 2024 James Smith <jsubuntuxp@disroot.org> +;;; Copyright © 2025 Sughosha <sughosha@disroot.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -4672,6 +4673,29 @@ network.") QUIC protocol.") (license license:expat))) +(define-public yaz + (package + (name "yaz") + (version "5.34.3") + (source + (origin + (method url-fetch) + (uri (string-append "https://download.indexdata.com/pub/yaz/yaz-" + version ".tar.gz")) + (sha256 + (base32 "1h54vda4rgisih309jbdzs6d5vk5mfv5ca9csdbwwrg8hgjbjk6f")))) + (build-system gnu-build-system) + (home-page "https://www.indexdata.com/resources/software/yaz/") + (synopsis "Z39.50 toolkit for C") + (description + "YAZ is a C/C++ library for information retrieval applications using +@uref{https://www.loc.gov/z3950/, Z39.50}, +@uref{https://www.loc.gov/standards/sru/, SRU} or +@uref{https://solr.apache.org/, Solr Web Service} protocols for information +retrieval. It also offers @uref{https://zoom.z3950.org/, ZOOM} API +implementing them.") + (license license:bsd-3))) + (define-public yggdrasil (package (name "yggdrasil") |