[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/06: gnu: Add uriparser.
From: |
guix-commits |
Subject: |
06/06: gnu: Add uriparser. |
Date: |
Wed, 23 Dec 2020 11:31:50 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 4994e1f2bd9b573d2c13abf2b98ec204f510ad11
Author: lsp <lsp@ableton.com>
AuthorDate: Tue Nov 17 17:50:06 2020 +0100
gnu: Add uriparser.
* gnu/packages/web.scm (uriparser): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/web.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index cb04d95..8d7dfe2 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -118,6 +118,7 @@
#: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 @@ It contains the code shared by all Kiwix ports.")
(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))))
- branch master updated (7624ebb -> 4994e1f), guix-commits, 2020/12/23
- 02/06: gnu: Add go-github-com-nwidger-jsoncolor., guix-commits, 2020/12/23
- 01/06: gnu: guix: Update to 7624ebb., guix-commits, 2020/12/23
- 05/06: etc: snippets: Add new build systems to package snippet., guix-commits, 2020/12/23
- 03/06: gnu: go-github-com-mattn-go-colorable: Update to 0.1.8., guix-commits, 2020/12/23
- 04/06: gnu: Add gron., guix-commits, 2020/12/23
- 06/06: gnu: Add uriparser.,
guix-commits <=