diff options
| author | Sergey Trofimov <sarg@sarg.org.ru> | 2024-03-12 17:47:33 +0100 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-03-17 12:53:21 +0100 |
| commit | 7ea4fedd10f1506c80ec25cb658fc119ba7c4a6a (patch) | |
| tree | 187cf1765d3d7f8c10fa4025553c8729e8a5194e /gnu/packages/documentation.scm | |
| parent | 85083527ddb5d4672ae069590aa65ec6ebce96e1 (diff) | |
gnu: Prefix licenses in documentation.scm
* gnu/packages/documentation.scm: Prefix licenses.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages/documentation.scm')
| -rw-r--r-- | gnu/packages/documentation.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/packages/documentation.scm b/gnu/packages/documentation.scm index 5d455431d3c..7aa43c12207 100644 --- a/gnu/packages/documentation.scm +++ b/gnu/packages/documentation.scm | |||
| @@ -30,7 +30,7 @@ | |||
| 30 | ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. | 30 | ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. |
| 31 | 31 | ||
| 32 | (define-module (gnu packages documentation) | 32 | (define-module (gnu packages documentation) |
| 33 | #:use-module (guix licenses) | 33 | #:use-module ((guix licenses) #:prefix license:) |
| 34 | #:use-module (guix packages) | 34 | #:use-module (guix packages) |
| 35 | #:use-module (guix download) | 35 | #:use-module (guix download) |
| 36 | #:use-module (guix gexp) | 36 | #:use-module (guix gexp) |
| @@ -104,7 +104,7 @@ | |||
| 104 | (description "LaTeX2HTML is a utility that converts LaTeX documents to web | 104 | (description "LaTeX2HTML is a utility that converts LaTeX documents to web |
| 105 | pages in HTML.") | 105 | pages in HTML.") |
| 106 | (home-page "https://www.latex2html.org/") | 106 | (home-page "https://www.latex2html.org/") |
| 107 | (license gpl2+))) | 107 | (license license:gpl2+))) |
| 108 | 108 | ||
| 109 | (define-public asciidoc | 109 | (define-public asciidoc |
| 110 | (package | 110 | (package |
| @@ -175,7 +175,7 @@ EPUB, man page. | |||
| 175 | AsciiDoc is highly configurable: both the AsciiDoc source file syntax and | 175 | AsciiDoc is highly configurable: both the AsciiDoc source file syntax and |
| 176 | the backend output markups (which can be almost any type of SGML/XML | 176 | the backend output markups (which can be almost any type of SGML/XML |
| 177 | markup) can be customized and extended by the user.") | 177 | markup) can be customized and extended by the user.") |
| 178 | (license gpl2+))) | 178 | (license license:gpl2+))) |
| 179 | 179 | ||
| 180 | (define-deprecated asciidoc-py3 asciidoc) | 180 | (define-deprecated asciidoc-py3 asciidoc) |
| 181 | 181 | ||
| @@ -241,7 +241,7 @@ documentation from annotated C++ sources, but it also supports other popular | |||
| 241 | programming languages such as C, Objective-C, C#, PHP, Java, Python, | 241 | programming languages such as C, Objective-C, C#, PHP, Java, Python, |
| 242 | IDL (Corba, Microsoft, and UNO/OpenOffice flavors), Fortran, VHDL, Tcl, | 242 | IDL (Corba, Microsoft, and UNO/OpenOffice flavors), Fortran, VHDL, Tcl, |
| 243 | and to some extent D.") | 243 | and to some extent D.") |
| 244 | (license gpl3+))) | 244 | (license license:gpl3+))) |
| 245 | 245 | ||
| 246 | (define-public doc++ | 246 | (define-public doc++ |
| 247 | (package | 247 | (package |
| @@ -266,7 +266,7 @@ and to some extent D.") | |||
| 266 | generate both TeX output for high-quality hardcopies or HTML output for online | 266 | generate both TeX output for high-quality hardcopies or HTML output for online |
| 267 | browsing. The documentation is extracted directly from the C/C++/IDL source | 267 | browsing. The documentation is extracted directly from the C/C++/IDL source |
| 268 | or Java class files.") | 268 | or Java class files.") |
| 269 | (license gpl2+))) | 269 | (license license:gpl2+))) |
| 270 | 270 | ||
| 271 | (define-public pod2pdf | 271 | (define-public pod2pdf |
| 272 | (package | 272 | (package |
| @@ -292,7 +292,7 @@ or Java class files.") | |||
| 292 | Documentation} format to PDF files. It also supports some extensions to the POD | 292 | Documentation} format to PDF files. It also supports some extensions to the POD |
| 293 | format, and supports the file types JPG, GIF, TIFF, PNG, and PNM for embedded | 293 | format, and supports the file types JPG, GIF, TIFF, PNG, and PNM for embedded |
| 294 | objects.") | 294 | objects.") |
| 295 | (license artistic2.0))) | 295 | (license license:artistic2.0))) |
| 296 | 296 | ||
| 297 | (define-public python-docrepr | 297 | (define-public python-docrepr |
| 298 | (package | 298 | (package |
| @@ -344,7 +344,7 @@ objects.") | |||
| 344 | (description "Docrepr renders Python docstrings to HTML with Sphinx. It | 344 | (description "Docrepr renders Python docstrings to HTML with Sphinx. It |
| 345 | can generate rich and plain representations of docstrings, alongside | 345 | can generate rich and plain representations of docstrings, alongside |
| 346 | additional metadata about the object to which the docstring belongs.") | 346 | additional metadata about the object to which the docstring belongs.") |
| 347 | (license bsd-3))) | 347 | (license license:bsd-3))) |
| 348 | 348 | ||
| 349 | (define-public scrollkeeper | 349 | (define-public scrollkeeper |
| 350 | (package | 350 | (package |
| @@ -377,7 +377,7 @@ documentation metadata as specified by the Open Source Metadata Framework and | |||
| 377 | provides a simple API to allow help browsers to find, sort, and search the | 377 | provides a simple API to allow help browsers to find, sort, and search the |
| 378 | document catalog. It will also be able to communicate with catalog servers on | 378 | document catalog. It will also be able to communicate with catalog servers on |
| 379 | the Net to search for documents which are not on the local system.") | 379 | the Net to search for documents which are not on the local system.") |
| 380 | (license lgpl2.1+))) | 380 | (license license:lgpl2.1+))) |
| 381 | 381 | ||
| 382 | (define-public zeal | 382 | (define-public zeal |
| 383 | (let ((commit "1cfa7c637f745be9d98777f06b4f8dec90892bf2") | 383 | (let ((commit "1cfa7c637f745be9d98777f06b4f8dec90892bf2") |
| @@ -425,4 +425,4 @@ the Net to search for documents which are not on the local system.") | |||
| 425 | (synopsis "Offline documentation browser inspired by Dash") | 425 | (synopsis "Offline documentation browser inspired by Dash") |
| 426 | (description "Zeal is a simple offline documentation browser | 426 | (description "Zeal is a simple offline documentation browser |
| 427 | inspired by Dash.") | 427 | inspired by Dash.") |
| 428 | (license gpl3+)))) | 428 | (license license:gpl3+)))) |
