diff options
| author | Roman Riabenko <roman@riabenko.com> | 2026-02-14 19:19:32 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-14 22:06:34 +0100 |
| commit | 65f8a855faa4451dd940ed8b67f127f6a4418b24 (patch) | |
| tree | 45c897e1da2968342b9cdc49ddbae5247b1f505b /gnu | |
| parent | 8fff5f2fe80feb134f38442423acf7864075e243 (diff) | |
gnu: eog-plugins: Fix build.
Fixes <https://issues.guix.gnu.org/65569>.
* gnu/packages/gnome.scm (eog-plugins)[arguments]: Link libeog.
Change-Id: I74291e823ef3764b8b96541d1c51ddd93f85bbb5
Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/gnome.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 53932f546b4..a42f6029ec5 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -83,6 +83,7 @@ ;;; Copyright © 2025 Noé Lopez <noelopez@free.fr> ;;; Copyright © 2025 Ashvith Shetty <ashvithshetty0010@zohomail.in> ;;; Copyright © 2025 Artyom V. Poptsov <poptsov.artyom@gmail.com> +;;; Copyright © 2026 Roman Riabenko <roman@riabenko.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -6943,6 +6944,12 @@ supports image conversion, rotation, and slideshows.") (base32 "0prymlrfh66p03va5aj30wazshp7bn80gzcsj9dgsmss2k512wlb")))) (build-system meson-build-system) + (arguments + (list + #:configure-flags + ;; Otherwise, building fails because Meson strips libeog from RUNPATH. + #~(list (string-append "-Dc_link_args=-Wl,-rpath=" + #$(this-package-input "eog") "/lib/eog")))) (home-page "https://wiki.gnome.org/Apps/EyeOfGnome/Plugins") (synopsis "Extensions for the Eye of GNOME image viewer") (native-inputs |
