nckx pushed a commit to branch master
in repository guix.
commit d40b71069f304bd5cc685ce89b24532317733687
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Sun Jul 16 02:00:01 2023 +0200
gnu: spread-sheet-widget: Omit static library.
* gnu/packages/gtk.scm (spread-sheet-widget)[arguments]:
Add "--disable-static" to #:configure-flags.
---
gnu/packages/gtk.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 5916742022..8e9a9dc8b2 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -2397,6 +2397,9 @@ does not deal with windowing system surfaces, drawing,
scene graphs, or input.")
(sha256
(base32 "0jwmx5i02jwmkp6gci2mapqglh2g3a0092wns185hfygiwlxi2c5"))))
(build-system gnu-build-system)
+ (arguments
+ (list #:configure-flags
+ #~(list "--disable-static")))
(native-inputs
(list `(,glib "bin") ; for glib-genmarshal, etc.
pkg-config))