apteryx pushed a commit to branch qt-team in repository guix. commit 17d203ffbf3807c82f66dab28e2992bf0545fe39 Author: Maxim Cournoyer <maxim.courno...@gmail.com> AuthorDate: Sat Mar 30 03:20:26 2024 -0400
gnu: kimageannotator: Build as shared library. * gnu/packages/kde-frameworks.scm (kimageannotator) [configure-flags]: Add -DBUILD_SHARED_LIBS=ON. [propagated-inputs]: Delete field. Change-Id: I94a8c3b87cf4ebe004508ecb32d13afb88af2f52 --- gnu/packages/kde-frameworks.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 5317fdae50..f487ac9a30 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1874,7 +1874,8 @@ by applications to write metadata.") "1f1y4r5rb971v2g34fgjbr14g0mdms5h66yl5k0p1zf50kr2wnic")))) (build-system qt-build-system) (arguments - (list #:configure-flags #~'("-DBUILD_TESTS=ON") + (list #:configure-flags #~'("-DBUILD_SHARED_LIBS=ON" + "-DBUILD_TESTS=ON") #:phases #~(modify-phases %standard-phases (replace 'check @@ -1888,8 +1889,6 @@ by applications to write metadata.") (list qttools-5 xorg-server-for-tests)) (inputs (list googletest qtsvg-5 kcolorpicker)) - (propagated-inputs - (list qtbase-5)) (home-page "https://github.com/ksnip/kImageAnnotator") (synopsis "Image annotating library") (description "This library provides tools to annotate images.")