mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: dblatex: Add 'dblatex/stable' variant.
* gnu/packages/docbook.scm (dblatex/stable): New variable.
This commit is contained in:
parent
be3aef49ed
commit
69437a59e6
1 changed files with 13 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
|||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
||||
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
;;; Copyright © 2021 Mark H Weaver <mhw@netris.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -33,6 +34,7 @@ (define-module (gnu packages docbook)
|
|||
#:use-module (guix licenses)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module ((guix build utils) #:select (alist-replace))
|
||||
#:use-module (guix build-system trivial)
|
||||
#:use-module (guix build-system python))
|
||||
|
||||
|
@ -460,3 +462,14 @@ (define-public dblatex
|
|||
DB2LaTeX.")
|
||||
;; lib/contrib/which is under an X11 license
|
||||
(license gpl2+)))
|
||||
|
||||
;; This is a variant of the 'dblatex' package that is not updated often. It
|
||||
;; is intended to be used as a native-input at build-time only, e.g. by
|
||||
;; 'gtk-doc' for generating package documentation. This allows the main
|
||||
;; 'dblatex' and 'imagemagick' packages to be freely updated on the 'master'
|
||||
;; branch without triggering an excessive number of rebuilds.
|
||||
(define-public dblatex/stable
|
||||
(hidden-package
|
||||
(package/inherit dblatex
|
||||
(inputs (alist-replace "imagemagick" `(,imagemagick/stable)
|
||||
(package-inputs dblatex))))))
|
||||
|
|
Loading…
Reference in a new issue