summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/gimp.scm17
1 files changed, 16 insertions, 1 deletions
diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm
index ff986c0a025..c0c66e52f58 100644
--- a/gnu/packages/gimp.scm
+++ b/gnu/packages/gimp.scm
@@ -223,7 +223,22 @@ provided, as well as a framework to add new color models and data types.")
223 (build-system meson-build-system) 223 (build-system meson-build-system)
224 (arguments 224 (arguments
225 `(#:configure-flags 225 `(#:configure-flags
226 (list "-Dintrospection=false"))) 226 (list "-Dintrospection=false")
227 #:phases
228 (modify-phases %standard-phases
229 (add-after 'unpack 'extend-test-time-outs
230 (lambda _
231 ;; Multiply some poorly-chosen time-outs for busy build machines.
232 (substitute* "tests/simple/test-node-exponential.c"
233 (("G_TIME_SPAN_SECOND" match)
234 (string-append "10 * " match)))
235 (substitute* "tests/simple/test-buffer-sharing.c"
236 (("g_timeout_add_seconds\\([0-9]+" match)
237 (string-append match "0")))
238 (substitute* (find-files "tests" "^meson\\.build$")
239 (("timeout ?: [0-9]+" match)
240 (string-append match "0")))
241 #t)))))
227 ;; These are propagated to satisfy 'gegl-0.4.pc'. 242 ;; These are propagated to satisfy 'gegl-0.4.pc'.
228 (propagated-inputs 243 (propagated-inputs
229 `(("babl" ,babl) 244 `(("babl" ,babl)