all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Marius Bakke <mbakke@fastmail.com>
To: 34435@debbugs.gnu.org
Cc: Hartmut Goebel <h.goebel@crazy-compilers.com>
Subject: [bug#34435] [PATCH 2/3] gnu: Add kdecoration.
Date: Mon, 11 Feb 2019 16:18:34 +0100	[thread overview]
Message-ID: <20190211151835.18653-2-mbakke@fastmail.com> (raw)
In-Reply-To: <20190211151835.18653-1-mbakke@fastmail.com>

From: Hartmut Goebel <h.goebel@crazy-compilers.com>

* gnu/packages/kde.scm (kdecoration): New public variable.

Co-authored-by: Marius Bakke <mbakke@fastmail.com>
---
 gnu/packages/kde.scm | 33 ++++++++++++++++++++++++++++++++-
 1 file changed, 32 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index 36f7f234c8..3508e8461f 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -4,7 +4,8 @@
 ;;; Copyright © 2017, 2018 Mark Meyer <mark@ofosos.org>
 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2018 Gábor Boskovits <boskovits@gmail.com>
-;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
+;;; Copyright © 2018, 2019 Marius Bakke <mbakke@fastmail.com>
+;;; Copyright © 2017 Hartmut Goebel <h.goebel@crazy-compilers.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -59,6 +60,36 @@
   #:use-module (gnu packages video)
   #: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 kdenlive
   (let ((version "18.08.1"))
     (package
-- 
2.20.1

  reply	other threads:[~2019-02-11 15:19 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-11 15:16 [bug#34435] [PATCH 0/3] KDE updates Marius Bakke
2019-02-11 15:18 ` [bug#34435] [PATCH 1/3] gnu: KDE: Update to 5.54.0 Marius Bakke
2019-02-11 15:18   ` Marius Bakke [this message]
2019-02-12  8:39     ` [bug#34435] [PATCH 2/3] gnu: Add kdecoration Hartmut Goebel
2019-02-11 15:18   ` [bug#34435] [PATCH 3/3] gnu: Add kscreenlocker Marius Bakke
2019-02-12  8:45     ` Hartmut Goebel
2019-02-12 23:02       ` bug#34435: " Marius Bakke

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190211151835.18653-2-mbakke@fastmail.com \
    --to=mbakke@fastmail.com \
    --cc=34435@debbugs.gnu.org \
    --cc=h.goebel@crazy-compilers.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.