[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/16: gnu: Add iso-8879-entities.
From: |
guix-commits |
Subject: |
04/16: gnu: Add iso-8879-entities. |
Date: |
Thu, 14 Jan 2021 09:58:47 -0500 (EST) |
apteryx pushed a commit to branch master
in repository guix.
commit 273cf0378d6ddfcf8b882decd796ad8f9699f343
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Jul 3 09:04:02 2018 -0400
gnu: Add iso-8879-entities.
* gnu/packages/docbook.scm (iso-8879-entities): New private variable.
---
gnu/packages/docbook.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/docbook.scm b/gnu/packages/docbook.scm
index 236c7e2..c5d8403 100644
--- a/gnu/packages/docbook.scm
+++ b/gnu/packages/docbook.scm
@@ -4,6 +4,7 @@
;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
+;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -214,6 +215,35 @@ by no means limited to these applications.) This package
provides XML DTDs.")
"This package provides XSL style sheets for DocBook.")
(license (x11-style "" "See 'COPYING' file."))))
+;;; Private package referenced by docbook-sgml.
+(define iso-8879-entities
+ (package
+ (name "iso-8879-entities")
+ (version "0.0") ;no proper version
+ (source (origin
+ (method url-fetch)
+ (uri "http://www.oasis-open.org/cover/ISOEnts.zip")
+ (sha256
+ (base32
+ "1clrkaqnvc1ja4lj8blr0rdlphngkcda3snm7b9jzvcn76d3br6w"))))
+ (build-system trivial-build-system)
+ (arguments
+ '(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+ (let ((source (assoc-ref %build-inputs "source"))
+ (unzip (string-append (assoc-ref %build-inputs "unzip")
+ "/bin/unzip"))
+ (out (string-append (assoc-ref %outputs "out"))))
+ (invoke unzip source "-d" out)))))
+ (native-inputs `(("unzip" ,unzip)))
+ (home-page "https://www.oasis-open.org/")
+ (synopsis "ISO 8879 character entities")
+ (description "ISO 8879 character entities that are typically used in
+the in DocBook SGML DTDs.")
+ (license (x11-style "" "See file headers."))))
+
(define-public dblatex
(package
(name "dblatex")
- branch master updated (88eb537 -> e45dcf4), guix-commits, 2021/01/14
- 01/16: gnu: opensp: Move package to (gnu packages xml)., guix-commits, 2021/01/14
- 04/16: gnu: Add iso-8879-entities.,
guix-commits <=
- 08/16: gnu: Add docbook-sgml-3.1., guix-commits, 2021/01/14
- 02/16: gnu: opensp: Add doc output, enable tests and add search path., guix-commits, 2021/01/14
- 03/16: gnu: Add openjade., guix-commits, 2021/01/14
- 05/16: gnu: Add docbook-sgml., guix-commits, 2021/01/14
- 06/16: gnu: Add docbook-dsssl., guix-commits, 2021/01/14
- 07/16: gnu: Add perl-sgmls., guix-commits, 2021/01/14
- 09/16: gnu: Add texlive-marvosym., guix-commits, 2021/01/14
- 12/16: gnu: Add texlive-jknappen., guix-commits, 2021/01/14
- 10/16: gnu: Add config., guix-commits, 2021/01/14
- 11/16: gnu: Add texlive-tipa., guix-commits, 2021/01/14