diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-07-12 23:11:39 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-07-12 23:23:26 -0400 |
commit | ad7a2be4151889a858ef25de6fd27b7bcb73cb79 (patch) | |
tree | 60dc5039ef5e8ce8e85cbd5953c65f3432d9c52b /gnu/packages | |
parent | b1523ffac597d56ab9657ab1c1b1a7fc49344d67 (diff) | |
download | guix-ad7a2be4151889a858ef25de6fd27b7bcb73cb79.tar.gz |
gnu: inkscape: Add bash-minimal to inputs.
* gnu/packages/inkscape.scm (inkscape)[inputs]: Add bash-minimal.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/inkscape.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/inkscape.scm b/gnu/packages/inkscape.scm index 5f033ee89a..ad9552e049 100644 --- a/gnu/packages/inkscape.scm +++ b/gnu/packages/inkscape.scm @@ -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))))) |