diff options
author | David Craven <david@craven.ch> | 2016-06-12 20:41:53 +0200 |
---|---|---|
committer | David Craven <david@craven.ch> | 2016-08-13 14:07:46 +0200 |
commit | 7a150b4d745900abde2ca31a86ededf37496dd27 (patch) | |
tree | 9051748d36f371df84b85d5a5689dee8dc6c1a6c /gnu | |
parent | 3dbb816a5f8e8d5ddbb04f409adaf4adef4d0d9b (diff) | |
download | patches-7a150b4d745900abde2ca31a86ededf37496dd27.tar patches-7a150b4d745900abde2ca31a86ededf37496dd27.tar.gz |
gnu: kde-frameworks: Add kguiaddons.
* gnu/packages/kde-frameworks.scm (kguiaddons): New variable.
Co-authored-by: Hartmut Goebel <h.goebel@crazy-compilers.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 217ce8945e..1ccb8ea192 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -450,6 +450,41 @@ such as printers, to be discovered without any user intervention or centralized infrastructure.") (license license:lgpl2.1+))) +(define-public kguiaddons + (package + (name "kguiaddons") + (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 + "0ig96ah20ybg5rwpswj9va2klvkh2q4amwxmgy3z4niwfsm2g3ic")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("xorg-server" ,xorg-server))) + (inputs + `(("qtbase" ,qtbase))) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'check 'start-xorg-server + (lambda* (#:key inputs #:allow-other-keys) + ;; The test suite requires a running X server. + (system (string-append (assoc-ref inputs "xorg-server") + "/bin/Xvfb :1 &")) + (setenv "DISPLAY" ":1") + #t))))) + (home-page "https://community.kde.org/Frameworks") + (synopsis "Utilities for graphical user interfaces") + (description "The KDE GUI addons provide utilities for graphical user +interfaces in the areas of colors, fonts, text, images, keyboard input.") + (license (list license:gpl2+ license:lgpl2.1+)))) + (define-public kwindowsystem (package (name "kwindowsystem") |