diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-16 02:00:01 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-16 02:00:02 +0200 |
commit | d40b71069f304bd5cc685ce89b24532317733687 (patch) | |
tree | 6ffad7d2d1d8a5d308b92438f44d2ec38d643bd9 | |
parent | 514d68b48fe2ebe96754b97e26951fd93ae1e656 (diff) | |
download | guix-d40b71069f304bd5cc685ce89b24532317733687.tar.gz guix-d40b71069f304bd5cc685ce89b24532317733687.zip |
gnu: spread-sheet-widget: Omit static library.
* gnu/packages/gtk.scm (spread-sheet-widget)[arguments]:
Add "--disable-static" to #:configure-flags.
-rw-r--r-- | gnu/packages/gtk.scm | 3 |
1 files changed, 3 insertions, 0 deletions
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)) |