mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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>
This commit is contained in:
parent
8b60547c23
commit
7f8e838a9a
1 changed files with 20 additions and 10 deletions
|
@ -63,6 +63,7 @@
|
||||||
#:use-module (gnu packages graphics)
|
#:use-module (gnu packages graphics)
|
||||||
#:use-module (gnu packages graphviz)
|
#:use-module (gnu packages graphviz)
|
||||||
#:use-module (gnu packages gstreamer)
|
#:use-module (gnu packages gstreamer)
|
||||||
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages image)
|
#:use-module (gnu packages image)
|
||||||
#:use-module (gnu packages iso-codes)
|
#:use-module (gnu packages iso-codes)
|
||||||
#:use-module (gnu packages kerberos)
|
#:use-module (gnu packages kerberos)
|
||||||
|
@ -370,21 +371,30 @@ Bluetooth stack. It is used by the KDE Bluetooth stack, BlueDevil.")
|
||||||
(version "5.98.0")
|
(version "5.98.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append "mirror://kde/stable/frameworks/"
|
||||||
"mirror://kde/stable/frameworks/"
|
(version-major+minor version)
|
||||||
(version-major+minor version) "/"
|
"/" name "-" version ".tar.xz"))
|
||||||
name "-" version ".tar.xz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0a3zvmhcfsnxv0jpyjny3sl769p99psadl1872v0qlkax47pvsjp"))))
|
"0a3zvmhcfsnxv0jpyjny3sl769p99psadl1872v0qlkax47pvsjp"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list extra-cmake-modules fdupes
|
(list extra-cmake-modules
|
||||||
python python-lxml)) ;; For 24x24 icon generation
|
fdupes
|
||||||
(inputs
|
`(,gtk+ "bin")
|
||||||
(list qtbase-5))
|
python
|
||||||
(arguments ;; fails because duplicate icons exist. TODO: try fix this.
|
python-lxml)) ;for 24x24 icon generation
|
||||||
`(#:tests? #f))
|
(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")
|
(home-page "https://community.kde.org/Frameworks")
|
||||||
(synopsis "Default KDE Plasma 5 icon theme")
|
(synopsis "Default KDE Plasma 5 icon theme")
|
||||||
(description "Breeze provides a freedesktop.org compatible icon theme.
|
(description "Breeze provides a freedesktop.org compatible icon theme.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue