diff options
| author | Ada Stevenson <adanskana@gmail.com> | 2025-09-23 14:23:19 +0800 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-09-30 16:48:22 +0900 |
| commit | 72014774dd3ddcf8d526c4d6206311c8f63bcc6b (patch) | |
| tree | d292cf589fef54568457333620144f25c233c5fc | |
| parent | 166c0b81b9ac70c30f9059bef4dd53795ea3b328 (diff) | |
gnu: gegl: Fix build (re-enable dependency fallbacks).
* gnu/packages/gimp.scm (gegl)[arguments]<#:configure-flags>: Add
"--wrap-mode=nodownload".
Change-Id: I25440fde9a7bd20692fda7fbc83818263535df4c
Signed-off-by: John Kehayias <john@guixotic.coop>
| -rw-r--r-- | gnu/packages/gimp.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm index d5da671ada..89fa08ca31 100644 --- a/gnu/packages/gimp.scm +++ b/gnu/packages/gimp.scm @@ -244,7 +244,10 @@ provided, as well as a framework to add new color models and data types.") (base32 "0v2wa2a3vnz1g4z5h9s8ili5h5kzk95hxlcp0zlxkwgbf5img1sq")))) (build-system meson-build-system) (arguments - `(#:phases + `(#:configure-flags + ;; TODO: properly unbundle. + '("--wrap-mode=nodownload") + #:phases (modify-phases %standard-phases (add-after 'unpack 'extend-test-time-outs (lambda _ |
