guix-commits
[Top][All Lists]
Advanced

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

07/17: gnu: Add libcss.


From: Eric Bavier
Subject: 07/17: gnu: Add libcss.
Date: Mon, 13 Feb 2017 23:37:17 -0500 (EST)

bavier pushed a commit to branch master
in repository guix.

commit 0527b43db4843d37106351ac35515a70eb39d727
Author: Eric Bavier <address@hidden>
Date:   Sat Feb 11 21:25:31 2017 -0600

    gnu: Add libcss.
    
    * gnu/packages/web.scm (libcss): 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 dc08942..1a44029 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -3849,6 +3849,34 @@ designed to store small strings and allow rapid 
comparison of them.  It is
 developed as part of the Netsurf project.")
     (license l:expat)))
 
+(define-public libcss
+  (package
+    (name "libcss")
+    (version "0.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://download.netsurf-browser.org/libs/releases/";
+                           name "-" version "-src.tar.gz"))
+       (sha256
+        (base32
+         "0qp4p1q1dwgdra4pkrzd081zjzisxkgwx650ijx323j8bj725daf"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("netsurf-buildsystem" ,netsurf-buildsystem)
+       ("pkg-config" ,pkg-config)
+       ("perl" ,perl)))
+    (propagated-inputs                  ;needed for libcss.pc
+     `(("libparserutils" ,libparserutils)
+       ("libwapcaplet" ,libwapcaplet)))
+    (arguments netsurf-buildsystem-arguments)
+    (home-page "http://www.netsurf-browser.org/projects/libcss/";)
+    (synopsis "CSS parser and selection library")
+    (description
+     "LibCSS is a CSS (Cascading Style Sheet) parser and selection engine,
+written in C.  It is developed as part of the NetSurf project.")
+    (license l:expat)))
+
 (define-public netsurf
   (package
     (name "netsurf")



reply via email to

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