diff options
author | Eric Bavier <bavier@member.fsf.org> | 2017-02-11 21:23:52 -0600 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2017-02-13 22:28:25 -0600 |
commit | 43bfbf137043c2e86ae907528ab830d66e86c642 (patch) | |
tree | 8a3286275d5e53dd89a4e3b65bdfc02e666ccc7c /gnu/packages/web.scm | |
parent | ef61177dddcedaf773e83aa99feef113537e5d92 (diff) | |
download | patches-43bfbf137043c2e86ae907528ab830d66e86c642.tar patches-43bfbf137043c2e86ae907528ab830d66e86c642.tar.gz |
gnu: Add hubbub.
* gnu/packages/web.scm (hubbub): New variable.
Diffstat (limited to 'gnu/packages/web.scm')
-rw-r--r-- | gnu/packages/web.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 37ea4e8f7d..5ace1ebe0b 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -3791,6 +3791,37 @@ libraries.") C. It is developed as part of the NetSurf project.") (license l:expat))) +(define-public hubbub + (package + (name "hubbub") + (version "0.3.3") + (source + (origin + (method url-fetch) + (uri (string-append "http://download.netsurf-browser.org/libs/releases/" + "lib" name "-" version "-src.tar.gz")) + (sha256 + (base32 + "101781iw32p47386fxqr01nrkywi12w17ajh02k2vlga4z8zyv86")) + (patches (search-patches "hubbub-sort-entities.patch")))) + (build-system gnu-build-system) + (native-inputs + `(("netsurf-buildsystem" ,netsurf-buildsystem) + ("pkg-config" ,pkg-config) + ("doxygen" ,doxygen) + ("json-c" ,json-c) + ("perl" ,perl))) + (propagated-inputs + `(("libparserutils" ,libparserutils))) ;for libhubbub.pc + (arguments netsurf-buildsystem-arguments) + (home-page "http://www.netsurf-browser.org/projects/hubbub/") + (synopsis "HTML5 compliant parsing library") + (description + "Hubbub is an HTML5 compliant parsing library, written in C, which can +parse both valid and invalid web content. It is developed as part of the +NetSurf project.") + (license l:expat))) + (define-public netsurf (package (name "netsurf") |