diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-16 02:00:01 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-16 02:00:07 +0200 |
commit | 4feaefbb277d7b5ae365999a9f9fb247dcc773e2 (patch) | |
tree | 016381e62f1a248024347a3eb4e12fa4f3d65ab6 | |
parent | 33166500d246581207171f213592f4128ffb210f (diff) | |
download | guix-4feaefbb277d7b5ae365999a9f9fb247dcc773e2.tar.gz guix-4feaefbb277d7b5ae365999a9f9fb247dcc773e2.zip |
gnu: gnome-multi-writer: Fix build.
* gnu/packages/gnome.scm (gnome-multi-writer)[native-inputs]: Add gettext-minimal.
-rw-r--r-- | gnu/packages/gnome.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 6e21167cc7..11085ecc80 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5356,7 +5356,8 @@ floating in an ocean using only your brain and a little bit of luck.") (("meson.add_install_script" &) (string-append "# " &))) #t))))) (native-inputs - (list `(,glib "bin") + (list gettext-minimal + `(,glib "bin") pkg-config)) (inputs (list gtk+ |