diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-10-01 16:21:23 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-10-02 11:00:04 +0000 |
commit | 90fb289b6979e28238a175dbf9897a5a67bdce87 (patch) | |
tree | 846eb643140c0d9350a4905d75dd9b50dba86846 /gnu | |
parent | 744bfc61da8464d8f07210318a797e51456a4f5e (diff) | |
download | guix-90fb289b6979e28238a175dbf9897a5a67bdce87.tar.gz |
gnu: gdk-pixbuf: Make 'bash-minimal' input unconditional.
* gnu/packages/gtk.scm (gdk-pixbuf)[inputs]{bash-minimal}: Make it unconditional. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gtk.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 691e207165..cfc4c61235 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -657,9 +657,7 @@ highlighting and other features typical of a source code editor.") ;; Used for testing and required at runtime. ("shared-mime-info" ,shared-mime-info))) (inputs - `(,@(if (%current-target-system) - `(("bash-minimal" ,bash-minimal)) ; for glib-or-gtk-wrap - '()) + `(("bash-minimal" ,bash-minimal) ; for glib-or-gtk-wrap ("jasper" ,jasper) ("libjpeg" ,libjpeg-turbo) ("libpng" ,libpng) |