diff options
author | Raghav Gururajan <rg@raghavgururajan.name> | 2021-03-11 10:41:10 -0500 |
---|---|---|
committer | Raghav Gururajan <rg@raghavgururajan.name> | 2021-09-05 10:26:16 -0400 |
commit | 013cf992ee492ba80ba261cbc492c9d5abfa36c8 (patch) | |
tree | 6ec13408f036ba9dd86186ed0bf8f30a071921e6 | |
parent | c23ff6007aa1fbfbec943c70796032f494eca93d (diff) | |
download | guix-013cf992ee492ba80ba261cbc492c9d5abfa36c8.tar.gz |
gnu: gdk-pixbuf: Enable jasper support.
* gnu/packages/gtk.scm (gdk-pixbuf) [arguments]<#:configure-flags>[-Djasper]: New flag. [inputs]: Add jasper. Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
-rw-r--r-- | gnu/packages/gtk.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 8c004ef8e6..52167cad8d 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -597,7 +597,7 @@ highlighting and other features typical of a source code editor.") (arguments `(#:meson ,meson-0.55 #:glib-or-gtk? #t ; To wrap binaries and/or compile schemas - #:configure-flags '("-Dinstalled_tests=false") + #:configure-flags '("-Dinstalled_tests=false" "-Djasper=true") #:phases (modify-phases %standard-phases ;; The slow tests take longer than the specified timeout. @@ -615,7 +615,8 @@ highlighting and other features typical of a source code editor.") ;; Used for testing and required at runtime. ("shared-mime-info" ,shared-mime-info))) (inputs - `(("libjpeg" ,libjpeg-turbo) + `(("jasper" ,jasper) + ("libjpeg" ,libjpeg-turbo) ("libpng" ,libpng) ("libtiff" ,libtiff))) (native-inputs |