mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: gnome-characters: Wrap program to provide the necessary Typelib files.
* gnu/packages/gnome.scm (gnome-characters)[arguments]: Add #:phases with a 'wrap' phase. [inputs]: Add GNOME-DESKTOP. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
562b4e47cd
commit
5757c641f2
1 changed files with 14 additions and 2 deletions
|
@ -548,7 +548,18 @@ (define-public gnome-characters
|
|||
(base32
|
||||
"08cwz39iwgsyyb2wqhb8vfbmh1cwfkgfiy7adp08w7rwqi99x3dp"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments '(#:glib-or-gtk? #t))
|
||||
(arguments
|
||||
`(#:glib-or-gtk? #t
|
||||
#:phases (modify-phases %standard-phases
|
||||
(add-after 'install 'wrap
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
;; GNOME Characters needs Typelib files from GTK and
|
||||
;; gnome-desktop.
|
||||
(wrap-program (string-append (assoc-ref outputs "out")
|
||||
"/bin/gnome-characters")
|
||||
`("GI_TYPELIB_PATH" ":" prefix
|
||||
(,(getenv "GI_TYPELIB_PATH"))))
|
||||
#t)))))
|
||||
(native-inputs
|
||||
`(("gettext" ,gettext-minimal)
|
||||
("glib:bin" ,glib "bin")
|
||||
|
@ -558,7 +569,8 @@ (define-public gnome-characters
|
|||
(inputs
|
||||
`(("gjs" ,gjs)
|
||||
("gtk+" ,gtk+)
|
||||
("libunistring" ,libunistring)))
|
||||
("libunistring" ,libunistring)
|
||||
("gnome-desktop" ,gnome-desktop)))
|
||||
(home-page "https://wiki.gnome.org/Apps/CharacterMap")
|
||||
(synopsis "Find and insert unusual characters")
|
||||
(description "Characters is a simple utility application to find
|
||||
|
|
Loading…
Reference in a new issue