diff options
author | Petr Hodina <phodina@protonmail.com> | 2022-09-26 23:53:41 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-11-21 22:01:08 +0100 |
commit | 7f8e838a9a1c56b98143acf34b5dda71f8636f8f (patch) | |
tree | 1e5725feb1deaa82d5f513e828096b457e7b4cf2 /gnu/packages/kde-frameworks.scm | |
parent | 8b60547c2306b0bddfe904bb7a6d96cc8695a7d9 (diff) | |
download | guix-7f8e838a9a1c56b98143acf34b5dda71f8636f8f.tar guix-7f8e838a9a1c56b98143acf34b5dda71f8636f8f.tar.gz |
gnu: breeze-icons: Enable tests. Update icons cache.
* gnu/packages/kde-frameworks.scm (breeze-icons)[arguments]: Enable tests. Add
phase to update icons.
[native-inputs]: Add gtk+:bin.
Signed-off-by: Marius Bakke <marius@gnu.org>
Diffstat (limited to 'gnu/packages/kde-frameworks.scm')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 3632b61334..d1542dc7d1 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -63,6 +63,7 @@ #:use-module (gnu packages graphics) #:use-module (gnu packages graphviz) #:use-module (gnu packages gstreamer) + #:use-module (gnu packages gtk) #:use-module (gnu packages image) #:use-module (gnu packages iso-codes) #:use-module (gnu packages kerberos) @@ -370,21 +371,30 @@ Bluetooth stack. It is used by the KDE Bluetooth stack, BlueDevil.") (version "5.98.0") (source (origin (method url-fetch) - (uri (string-append - "mirror://kde/stable/frameworks/" - (version-major+minor version) "/" - name "-" version ".tar.xz")) + (uri (string-append "mirror://kde/stable/frameworks/" + (version-major+minor version) + "/" name "-" version ".tar.xz")) (sha256 (base32 "0a3zvmhcfsnxv0jpyjny3sl769p99psadl1872v0qlkax47pvsjp")))) (build-system cmake-build-system) (native-inputs - (list extra-cmake-modules fdupes - python python-lxml)) ;; For 24x24 icon generation - (inputs - (list qtbase-5)) - (arguments ;; fails because duplicate icons exist. TODO: try fix this. - `(#:tests? #f)) + (list extra-cmake-modules + fdupes + `(,gtk+ "bin") + python + python-lxml)) ;for 24x24 icon generation + (inputs (list qtbase-5)) + (arguments + (list #:phases #~(modify-phases %standard-phases + (add-after 'install 'update-cache + (lambda* _ + (invoke "gtk-update-icon-cache" + (string-append #$output + "/share/icons/breeze")) + (invoke "gtk-update-icon-cache" + (string-append #$output + "/share/icons/breeze-dark"))))))) (home-page "https://community.kde.org/Frameworks") (synopsis "Default KDE Plasma 5 icon theme") (description "Breeze provides a freedesktop.org compatible icon theme. |