guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/09: gnu: Add libnslog.


From: guix-commits
Subject: 08/09: gnu: Add libnslog.
Date: Tue, 30 Jul 2019 23:38:51 -0400 (EDT)

bavier pushed a commit to branch master
in repository guix.

commit 2c618972c07cd3145c8640af6333166347ea0fba
Author: Eric Bavier <address@hidden>
Date:   Tue Jul 30 22:36:44 2019 -0500

    gnu: Add libnslog.
    
    * gnu/packages/web.scm (libnslog): New variable.
---
 gnu/packages/web.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 05bf2c1..8b4521b 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]