diff options
author | David Craven <david@craven.ch> | 2016-10-29 18:48:28 +0200 |
---|---|---|
committer | David Craven <david@craven.ch> | 2016-10-29 23:51:43 +0200 |
commit | 02dc8847c8bdb1866cd51b0570a641fc138cb497 (patch) | |
tree | 1ff69ce3cc559f5535295d39a5b32d8e7ede2d53 /gnu | |
parent | bfa96eba569bbc4b6c772ce0298c1e98b8ab5c22 (diff) |
gnu: breeze-icons: Update to 5.27.0.
* gnu/packages/kde-frameworks.scm (breeze-icons): Update to 5.27.0.
[native-inputs]: Add fduptes and libxml2.
[arguments]: Disable tests.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index ba22f89651..c72546110d 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -250,21 +250,28 @@ Bluetooth stack. It is used by the KDE Bluetooth stack, BlueDevil.") (define-public breeze-icons (package (name "breeze-icons") - (version "5.24.0") - (source - (origin - (method url-fetch) - (uri (string-append "mirror://kde/stable/frameworks/" - (version-major+minor version) "/" - name "-" version ".tar.xz")) - (sha256 - (base32 - "1dh7bijx99sdb3vn6394wmm5cq0fvvmz8h17sx4hakmbga849cx2")))) + (version "5.27.0") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://kde/stable/frameworks/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "12awfvka9sgdgh7dyg7cw7myw7fxrx1w93s1gyhdq2drjsdbghgz")))) (build-system cmake-build-system) (native-inputs - `(("extra-cmake-modules" ,extra-cmake-modules))) + `(("extra-cmake-modules" ,extra-cmake-modules) + ("fdupes" ,fdupes) + ("libxml2" ,libxml2))) (inputs `(("qtbase" ,qtbase))) + ;; FIXME: Dupes test fails. Issue is fixed upstream + ;; Remove when updating to 5.28. + ;; https://github.com/KDE/breeze-icons/commit/22b383359e3a0e02d4828e6fa8ed8a3d213440b1 + (arguments + `(#:tests? #f)) (home-page "https://community.kde.org/Frameworks") (synopsis "Default KDE Plasma 5 icon theme") (description "Breeze provides a freedesktop.org compatible icon theme. |