diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-19 01:08:45 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-19 01:10:43 +0200 |
commit | cb9fd8de864ddd2e0841c98fb34a8dc69e32cdc2 (patch) | |
tree | 7002b308de0d240e203fc8552744d789a72c0ce3 /gnu | |
parent | 186b7d536f9f029f28ccf0590df2cc0e482884fb (diff) | |
download | guix-cb9fd8de864ddd2e0841c98fb34a8dc69e32cdc2.tar.gz |
gnu: libde265: Omit static library.
* gnu/packages/video.scm (libde265)[arguments]: Pass ‘--disable-static’.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/video.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 666ea70aee..dee8f767bb 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -435,6 +435,9 @@ applications by providing high-level classes for commonly required tasks.") (sha256 (base32 "1qisj8ryzbknam3hk81rq70fsd9mcpxm898bqygvbsmbwyvmz3pg")))) (build-system gnu-build-system) + (arguments + `(#:configure-flags + (list "--disable-static"))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) |