diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2017-06-09 13:54:48 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-01-31 16:25:53 +0100 |
commit | 015567258d102c4102adfec21b10d10a3210e93c (patch) | |
tree | 4463757f323cc4dbee012daa4b276a4ba1debeac | |
parent | 10a9ded29be00b3284744e543dd725da0b9f718b (diff) | |
download | guix-015567258d102c4102adfec21b10d10a3210e93c.tar.gz |
gnu: Add plasma-workspace-wallpapers.
* gnu/packages/kde-plasma.scm (plasma-workspace-wallpapers): New variable.
-rw-r--r-- | gnu/packages/kde-plasma.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index 497b8badba..74fdca98b5 100644 --- a/gnu/packages/kde-plasma.scm +++ b/gnu/packages/kde-plasma.scm @@ -1635,3 +1635,25 @@ integrated search, hardware management and a high degree of customizability.") ;; parts are LGPL2.1+. The artwork is under some different licenses. (license (list license:expat license:lgpl3+ ;; KDE e.V. license:gpl2 license:lgpl2.1 license:gpl2+)))) + +(define-public plasma-workspace-wallpapers + (package + (name "plasma-workspace-wallpapers") + (version "5.19.5") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/plasma/" version + "/plasma-workspace-wallpapers-" version ".tar.xz")) + (sha256 + (base32 "1ybl2flm9a8g1ycvsyn2wimwm7vxpiyrsvlnq1qwlv1m6mhc7vja")))) + (build-system qt-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (home-page "http://vdesign.kde.org/") + (synopsis "Wallpapers for Plasma workspace") + (description "This package contains the default wallpapers for the Plasma +workspace.") + ;; The archive includes the text of both gpl2 and lgpl3, but the files are + ;; actually all lgpl3 (according to the metadata.desktop files). + (license license:lgpl3))) |