gnu: cheese: Use gexps.
* gnu/packages/gnome.scm (cheese) [arguments]: Use gexps. [phases] {wrap-cheese}: Delete extraneous INPUTS binding.
This commit is contained in:
parent
895389583b
commit
1a97e68de9
1 changed files with 13 additions and 13 deletions
|
@ -11451,19 +11451,19 @@ photo-booth-like software, such as Cheese.")
|
||||||
(base32
|
(base32
|
||||||
"02vzcvk2s6cwvdw6v6qmlq3znamy6zwv7l6nlbqjfwrj7i54qmvl"))))
|
"02vzcvk2s6cwvdw6v6qmlq3znamy6zwv7l6nlbqjfwrj7i54qmvl"))))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:glib-or-gtk? #t
|
(list #:glib-or-gtk? #t
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'skip-gtk-update-icon-cache
|
(add-after 'unpack 'skip-gtk-update-icon-cache
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Don't create 'icon-theme.cache'
|
;; Don't create 'icon-theme.cache'.
|
||||||
(substitute* "meson_post_install.py"
|
(substitute* "meson_post_install.py"
|
||||||
(("gtk-update-icon-cache") (which "true")))))
|
(("gtk-update-icon-cache") (which "true")))))
|
||||||
(add-after 'install 'wrap-cheese
|
(add-after 'install 'wrap-cheese
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(wrap-program (search-input-file outputs "bin/cheese")
|
(wrap-program (search-input-file outputs "bin/cheese")
|
||||||
`("GST_PLUGIN_SYSTEM_PATH" ":" prefix
|
`("GST_PLUGIN_SYSTEM_PATH" ":" prefix
|
||||||
(,(getenv "GST_PLUGIN_SYSTEM_PATH")))))))))
|
(,(getenv "GST_PLUGIN_SYSTEM_PATH")))))))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list docbook-xsl
|
(list docbook-xsl
|
||||||
|
|
Reference in a new issue