diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-01 23:37:53 +0200 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-07-11 08:24:42 +0200 |
| commit | 9f8683190b9c400a5e5b0bdf2deca34cadedc685 (patch) | |
| tree | 5b25b007d2accb9f6a0c82ef44bc9ebbd2e79737 | |
| parent | 0037ece4752e671166a8bf2f48354f92fe7c52dc (diff) | |
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>
| -rw-r--r-- | gnu/packages/poedit.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/poedit.scm b/gnu/packages/poedit.scm index 1f094ad9b28..5a1c7ec7d9c 100644 --- a/gnu/packages/poedit.scm +++ b/gnu/packages/poedit.scm @@ -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 |
