mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add uriparser.
* gnu/packages/web.scm (uriparser): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
d6b0d219c6
commit
4994e1f2bd
1 changed files with 27 additions and 0 deletions
|
@ -118,6 +118,7 @@ (define-module (gnu packages web)
|
|||
#:use-module (gnu packages gnupg)
|
||||
#:use-module (gnu packages golang)
|
||||
#:use-module (gnu packages gperf)
|
||||
#:use-module (gnu packages graphviz)
|
||||
#:use-module (gnu packages gtk)
|
||||
#:use-module (gnu packages guile)
|
||||
#:use-module (gnu packages guile-xyz)
|
||||
|
@ -8002,3 +8003,29 @@ (define-public kiwix-desktop
|
|||
(description "Kiwix Desktop allows you to enjoy a lot of different content
|
||||
offline (such as Wikipedia), without any access to Internet.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public uriparser
|
||||
(let ((commit "25dddb16cf044a7df27884e7ad3911baaaca3d7c")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "uriparser")
|
||||
(version (git-version "0.9.4" revision commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/uriparser/uriparser")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1ffzia679axcsccx2fxjpxhb0i5xc42zxn446x6c1170w6v69qf6"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs `(("gtest" ,googletest)
|
||||
("doxygen" ,doxygen)
|
||||
("graphviz" ,graphviz)))
|
||||
(synopsis "Strictly RFC 3986 compliant URI parsing and handling library")
|
||||
(description "uriparser is a strictly RFC 3986 compliant URI parsing and
|
||||
handling library written in C89 (\"ANSI C\"). uriparser is fast and supports
|
||||
Unicode.")
|
||||
(home-page "https://uriparser.github.io/")
|
||||
(license license:bsd-3))))
|
||||
|
|
Loading…
Reference in a new issue