diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-11-03 20:41:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-11-03 23:47:14 +0100 |
commit | fccc01275dff5be0f9e5efc7cb87e21f6663fb55 (patch) | |
tree | 9e0e769e5062bd653f277f019fef423f232977a2 /gnu/packages/guile-xyz.scm | |
parent | f0bb2662bb05625042094e124521197c5f43505e (diff) | |
download | guix-fccc01275dff5be0f9e5efc7cb87e21f6663fb55.tar guix-fccc01275dff5be0f9e5efc7cb87e21f6663fb55.tar.gz |
gnu: Depend on 'gettext-minimal' rather than 'gettext' when appropriate.
* gnu/packages/backup.scm (duplicity)[native-inputs]: Use
GETTEXT-MINIMAL instead of GNU-GETTEXT.
* gnu/packages/mpd.scm (mpdris2)[native-inputs]: Likewise.
* gnu/packages/guile-xyz.scm (nomad)[native-inputs]: Likewise.
(guile-mkdir-p)[native-inputs]: Likewise.
(guile-avahi)[native-inputs]: Remove GNU-GETTEXT, now unneeded.
Diffstat (limited to 'gnu/packages/guile-xyz.scm')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index a8ef627be5..0b7f3b9a58 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -3170,7 +3170,7 @@ perform geometrical transforms on JPEG images.") ("guile" ,guile-2.2) ("glib:bin" ,glib "bin") ("texinfo" ,texinfo) - ("gettext" ,gnu-gettext) + ("gettext" ,gettext-minimal) ("perl" ,perl))) (inputs `(;; Guile @@ -4095,7 +4095,6 @@ errors.") `(("autoconf" ,autoconf) ("automake" ,automake) ("libtool" ,libtool) - ("gettext" ,gnu-gettext) ("pkg-config" ,pkg-config) ("texinfo" ,texinfo))) (synopsis "Guile bindings to Avahi") @@ -4134,7 +4133,7 @@ Discovery (DNS-SD).") ("autoconf-archive" ,autoconf-archive) ("automake" ,automake) ("pkg-config" ,pkg-config) - ("gettext" ,gnu-gettext))) + ("gettext" ,gettext-minimal))) (inputs `(("guile" ,guile-3.0))) (synopsis "Implementation of a recursive @code{mkdir} for Guile") (description |