mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: Add at-spi2-atk-minimal.
* gnu/packages/gtk.scm (at-spi2-atk-minimal): New variable.
This commit is contained in:
parent
43b6b45e7b
commit
0e3897187c
1 changed files with 19 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
||||||
;;; Copyright © 2019 Giacomo Leidi <goodoldpaul@autistici.org>
|
;;; Copyright © 2019 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||||
;;; Copyright © 2020 Brendan Tildesley <mail@brendan.scot>
|
;;; Copyright © 2020 Brendan Tildesley <mail@brendan.scot>
|
||||||
;;; Copyright © 2020 Guillaume Le Vaillant <glv@posteo.net>
|
;;; Copyright © 2020 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
|
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -649,6 +650,24 @@ (define-public at-spi2-core
|
||||||
(license license:lgpl2.0+)
|
(license license:lgpl2.0+)
|
||||||
(home-page "https://projects.gnome.org/accessibility/")))
|
(home-page "https://projects.gnome.org/accessibility/")))
|
||||||
|
|
||||||
|
;;; A minimal variant used to prevent a cycle with Inkscape.
|
||||||
|
(define at-spi2-core-minimal
|
||||||
|
(package
|
||||||
|
(inherit at-spi2-core)
|
||||||
|
(name "at-spi2-core-minimal")
|
||||||
|
(outputs (delete "doc" (package-outputs at-spi2-core)))
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments at-spi2-core)
|
||||||
|
((#:configure-flags configure-flags)
|
||||||
|
`(delete "-Ddocs=true" ,configure-flags))
|
||||||
|
((#:phases phases)
|
||||||
|
`(modify-phases ,phases
|
||||||
|
(delete 'set-documentation-path)
|
||||||
|
(delete 'prepare-doc-directory)
|
||||||
|
(delete 'move-documentation)))))
|
||||||
|
(native-inputs
|
||||||
|
(alist-delete "gtk-doc" (package-native-inputs at-spi2-core)))))
|
||||||
|
|
||||||
(define-public at-spi2-atk
|
(define-public at-spi2-atk
|
||||||
(package
|
(package
|
||||||
(name "at-spi2-atk")
|
(name "at-spi2-atk")
|
||||||
|
|
Loading…
Reference in a new issue