mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: gtk-doc: Add 'gtk-doc/stable' variant.
* gnu/packages/gtk.scm (gtk-doc/stable): New variable.
This commit is contained in:
parent
69437a59e6
commit
11d73170c5
1 changed files with 12 additions and 0 deletions
|
@ -48,6 +48,7 @@ (define-module (gnu packages gtk)
|
|||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module ((guix build utils) #:select (alist-replace))
|
||||
#:use-module (guix build-system glib-or-gtk)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system meson)
|
||||
|
@ -1829,6 +1830,17 @@ (define-public gtk-doc
|
|||
can also be used to document application code.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
;; This is a variant of the 'gtk-doc' package that is not updated often. It
|
||||
;; is intended to be used as a native-input at build-time only. This allows
|
||||
;; the main 'gtk-doc', 'dblatex' and 'imagemagick' packages to be freely
|
||||
;; updated on the 'master' branch without triggering an excessive number of
|
||||
;; rebuilds.
|
||||
(define-public gtk-doc/stable
|
||||
(hidden-package
|
||||
(package/inherit gtk-doc
|
||||
(inputs (alist-replace "dblatex" `(,dblatex/stable)
|
||||
(package-inputs gtk-doc))))))
|
||||
|
||||
(define-public gtk-engines
|
||||
(package
|
||||
(name "gtk-engines")
|
||||
|
|
Loading…
Reference in a new issue