mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
gnu: poedit: Replace gettext native-input.
gnu-gettext has an emacs-minimal dependency, and we'd better avoid this dependency. * gnu/packages/gnome.scm (poedit)[native-inputs]: Replace gnu-gettext by gettext-minimal. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
0037ece475
commit
9f8683190b
1 changed files with 4 additions and 4 deletions
|
|
@ -63,17 +63,17 @@
|
|||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'install 'wrap-executable
|
||||
(lambda _
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(wrap-program (string-append #$output "/bin/poedit")
|
||||
`("PATH" prefix
|
||||
,(list (string-append #$(this-package-input "gettext")
|
||||
"/bin")))))))))
|
||||
,(list
|
||||
(dirname (search-input-file inputs "bin/gettext"))))))))))
|
||||
|
||||
(native-inputs (list autoconf automake pkg-config))
|
||||
(inputs (list bash-minimal
|
||||
boost
|
||||
enchant
|
||||
gnu-gettext
|
||||
gettext-minimal
|
||||
gtk+
|
||||
gtkspell3
|
||||
icu4c
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue