3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: inkscape: Add bash-minimal to inputs.

* gnu/packages/inkscape.scm (inkscape)[inputs]: Add bash-minimal.
This commit is contained in:
Maxim Cournoyer 2022-07-12 23:11:39 -04:00
parent b1523ffac5
commit ad7a2be415
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -31,6 +31,7 @@
#:use-module (guix build-system cmake)
#:use-module (gnu packages)
#:use-module (gnu packages aspell)
#:use-module (gnu packages bash)
#:use-module (gnu packages bdw-gc)
#:use-module (gnu packages boost)
#:use-module (gnu packages check)
@ -280,5 +281,6 @@ as the native format.")
`("GDK_PIXBUF_MODULE_FILE" =
(,(getenv "GDK_PIXBUF_MODULE_FILE")))))))))))
(inputs (modify-inputs (package-inputs inkscape/stable)
(append librsvg))) ;for the pixbuf loader
(append bash-minimal
librsvg))) ;for the pixbuf loader
(properties (alist-delete 'hidden? (package-properties inkscape/stable)))))