diff options
author | Eric Bavier <bavier@member.fsf.org> | 2019-07-30 22:36:44 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2019-07-30 22:36:44 -0500 |
commit | 2c618972c07cd3145c8640af6333166347ea0fba (patch) | |
tree | a1fe7788f5522176836796776fd495f55b95fd7b /gnu/packages | |
parent | 33d13088d0d0d558a3c002718f8d1962fb160e9c (diff) | |
download | patches-2c618972c07cd3145c8640af6333166347ea0fba.tar patches-2c618972c07cd3145c8640af6333166347ea0fba.tar.gz |
gnu: Add libnslog.
* gnu/packages/web.scm (libnslog): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/web.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 05bf2c10b8..8b4521b37e 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -4510,6 +4510,34 @@ written in C. It is developed as part of the NetSurf project.") C. It is developed as part of the NetSurf project.") (license license:expat))) +(define-public libnslog + (package + (name "libnslog") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (string-append "http://download.netsurf-browser.org/libs/releases/" + "libnslog-" version "-src.tar.gz")) + (sha256 + (base32 + "1ggs6xvxp8fbg5w8pifalipm458ygr9ab6j2yvj8fnnmxwvdh4jd")))) + (build-system gnu-build-system) + (native-inputs + `(("netsurf-buildsystem" ,netsurf-buildsystem) + ("pkg-config" ,pkg-config) + ("check" ,check) ;for tests + ("bison" ,bison) + ("flex" ,flex))) + (arguments netsurf-buildsystem-arguments) + (home-page "http://www.netsurf-browser.org/") + (synopsis "Logging library") + (description + "Libnslog provides a category-based logging library which supports +complex logging filters, multiple log levels, and provides context through to +client applications. It is developed as part of the NetSurf project.") + (license license:expat))) + (define-public libnsutils (package (name "libnsutils") |