summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiliana Marie Prikler <liliana.prikler@gmail.com>2025-04-27 18:07:26 +0200
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2025-04-27 18:29:46 +0200
commit9fd6c3b03ff027fb1316569e4f8bae0698f1da7a (patch)
tree29bd900d8d6c023c5e1443be8f0ec0bfcb6ac8ad
parent97ea59b846c5267098a019f36c84dcaa55fb123e (diff)
gnu: blueprint-compiler: Use suffix wrap.
This patch is a follow-up to ba15e886173caf1c0a8734f82e2000103c040204. It is expected that packages relying on blueprint-compiler adjust GI_TYPELIB_PATH according to their requirements at build time. * gnu/packages/gnome.scm (blueprint-compiler)[gi-wrap]: Use ‘suffix’ instead of ‘=’ for wrapping.
-rw-r--r--gnu/packages/gnome.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 26416df1556..86481705bbb 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -3409,7 +3409,9 @@ the GNOME desktop environment.")
(lambda _
(let ((prog (string-append #$output "/bin/blueprint-compiler")))
(wrap-program prog
- `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH"))))))))))
+ `("GI_TYPELIB_PATH"
+ suffix
+ (,(getenv "GI_TYPELIB_PATH"))))))))))
(native-inputs (list gtk
libadwaita
python