guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/07: gnu: Add kdecoration.


From: guix-commits
Subject: 06/07: gnu: Add kdecoration.
Date: Tue, 12 Feb 2019 18:02:01 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 6a97dfff19cce5cee2c779efcb9c3ff93076f81c
Author: Hartmut Goebel <address@hidden>
Date:   Fri Jun 9 13:12:08 2017 +0200

    gnu: Add kdecoration.
    
    * gnu/packages/kde-plasma.scm (kdecoration): New public variable.
    
    Co-authored-by: Marius Bakke <address@hidden>
---
 gnu/packages/kde-plasma.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index ff6fa64..c8e1f61 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -1,6 +1,8 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2016 Thomas Danckaert <address@hidden>
 ;;; Copyright © 2018 Meiyo Peng <address@hidden>
+;;; Copyright © 2019 Marius Bakke <address@hidden>
+;;; Copyright © 2017 Hartmut Goebel <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -29,6 +31,36 @@
   #:use-module (gnu packages qt)
   #:use-module (gnu packages xorg))
 
+(define-public kdecoration
+  (package
+    (name "kdecoration")
+    (version "5.14.5")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://kde/stable/plasma/" version
+                                  "/kdecoration-" version ".tar.xz"))
+              (sha256
+               (base32
+                "115pli0qpa8lx0jasg1886fcg7gb2kk8v6k8r8l8c820l97sq7in"))))
+    (properties `((tags . '("Desktop" "KDE" "Plasma"))))
+    (build-system cmake-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)))
+    (inputs
+     `(("ki18n" ,ki18n)
+       ("qtbase" ,qtbase)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'check-setup
+           (lambda _ (setenv "QT_QPA_PLATFORM" "offscreen") #t)))))
+    (home-page "https://cgit.kde.org/kdecoration.git";)
+    (synopsis "Plugin based library to create window decorations")
+    (description "KDecoration is a library to create window decorations.
+These window decorations can be used by for example an X11 based window
+manager which re-parents a Client window to a window decoration frame.")
+    (license license:lgpl3+)))
+
 (define-public libkscreen
   (package
     (name "libkscreen")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]