unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 7fe55ecbf5a2fc2157bb8503dd6865a6c67849cf 28738 bytes (raw)
name: gnu/packages/kde-plasma.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 Thomas Danckaert <post@thomasdanckaert.be>
;;; Copyright © 2018 Meiyo Peng <meiyo.peng@gmail.com>
;;; Copyright © 2019 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2017, 2019, 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2020 Zheng Junjie <873216071@qq.com>
;;; Copyright © 2022 Brendan Tildesley <mail@brendan.scot>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages kde-plasma)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix gexp)
  #:use-module (guix build-system cmake)
  #:use-module (guix build-system qt)
  #:use-module (gnu packages admin)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages fontutils)
  #:use-module (gnu packages freedesktop)
  #:use-module (gnu packages gcc)
  #:use-module (gnu packages ghostscript)
  #:use-module (gnu packages gl)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages gtk)
  #:use-module (gnu packages iso-codes)
  #:use-module (gnu packages kde)
  #:use-module (gnu packages kde-frameworks)
  #:use-module (gnu packages linux)
  #:use-module (gnu packages maths)
  #:use-module (gnu packages multiprecision)
  #:use-module (gnu packages pciutils)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages python)
  #:use-module (gnu packages qt)
  #:use-module (gnu packages xdisorg)
  #:use-module (gnu packages xorg)
  #:use-module (gnu packages web))

(define-public breeze
  (package
    (name "breeze")
    (version "5.25.3")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://kde/stable/plasma/" version "/"
                                  name "-" version ".tar.xz"))
              (sha256
               (base32
                "0za75ckgfcdxrh2qxgyl2c1273g2xqwmd55njsis1yvwryadypqw"))))
    (build-system qt-build-system)
    ;; TODO: Warning at /gnu/store/…-kpackage-5.34.0/…/KF5PackageMacros.cmake:
    ;;   warnings during generation of metainfo for org.kde.breezedark.desktop:
    ;;   Package type "Plasma/LookAndFeel" not found
    ;; TODO: Check whether is makes sence splitting into several outputs, like
    ;; Debian does:
    ;; - breeze-cursor-theme
    ;; - "out", "devel"
    ;; - kde-style-breeze - Widget style
    ;; - kde-style-breeze-qt4 - propably not useful
    ;; - kwin-style-breeze
    ;; - qml-module-qtquick-controls-styles-breeze - QtQuick style
    (native-inputs
     (list extra-cmake-modules pkg-config))
    (inputs
     (list kcmutils ; optional
           kconfigwidgets
           kcoreaddons
           kde-frameworkintegration ; optional
           kdecoration
           kguiaddons
           ki18n
           kirigami
           kiconthemes ; for optional kde-frameworkintegration
           kpackage
           kwayland ; optional
           kwindowsystem
           qtbase-5
           qtdeclarative ; optional
           qtx11extras))
    (home-page "https://invent.kde.org/plasma/breeze")
    (synopsis "Default KDE Plasma theme")
    (description "Artwork, styles and assets for the Breeze visual style for
the Plasma Desktop.  Breeze is the default theme for the KDE Plasma desktop.")
    (license license:gpl2+)))

(define-public breeze-gtk
  (package
    (name "breeze-gtk")
    (version "5.19.5")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://kde/stable/plasma/"
                                  version "/" name
                                  "-" version ".tar.xz"))
              (sha256
               (base32
                "1j2nq9yw1ragmgwrz9f6ca4ifpi86qv1bbprdgd2qm2yh7vb44sj"))))
    (build-system qt-build-system)
    (arguments
     '(#:tests? #f))                              ;no 'test' target
    (native-inputs (list breeze extra-cmake-modules sassc python
                         python-pycairo))
    (home-page "https://invent.kde.org/plasma/breeze")
    (synopsis "Default KDE Plasma theme (GTK+ port)")
    (description "GTK+ port of the Breeze visual style for the Plasma Desktop.
Breeze is the default theme for the KDE Plasma desktop.")
    (license (list license:bsd-3                  ;cmake/FindSass.cmake
                   license:lgpl2.1+))))           ;<all other files>

(define-public kdecoration
  (package
    (name "kdecoration")
    (version "5.25.3")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://kde/stable/plasma/" version
                                  "/kdecoration-" version ".tar.xz"))
              (sha256
               (base32
                "0b6ynqkndmlac89hv339k365m7wykp9y238df62jlq4vpr1r9x9y"))))
    (build-system qt-build-system)
    (native-inputs
     (list extra-cmake-modules))
    (inputs
     (list kcoreaddons ki18n qtbase-5))
    (home-page "https://invent.kde.org/plasma/kdecoration")
    (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 ksshaskpass
  (package
    (name "ksshaskpass")
    (version "5.25.3")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://kde/stable/plasma/" version
                                  "/ksshaskpass-" version ".tar.xz"))
              (sha256
               (base32
                "0sfl77szvfq9c7v0gsv5nnf7h5kxigyy2z2p1cwmhm1pq4n606nk"))))
    (build-system qt-build-system)
    (native-inputs
     (list extra-cmake-modules kdoctools))
    (inputs
     (list kcoreaddons ki18n kwallet kwidgetsaddons qtbase-5))
    (home-page "https://invent.kde.org/plasma/ksshaskpass")
    (synopsis "Front-end for ssh-add using kwallet")
    (description "Ksshaskpass is a front-end for @code{ssh-add} which stores the
password of the ssh key in KWallet.  Ksshaskpass is not meant to be executed
directly, you need to tell @code{ssh-add} about it.  @code{ssh-add} will then
call it if it is not associated to a terminal.")
    (license license:gpl2+)))

(define-public layer-shell-qt
  (package
    (name "layer-shell-qt")
    (version "5.25.3")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://kde/stable/plasma/" version
                                  "/layer-shell-qt-" version ".tar.xz"))
              (sha256
               (base32
                "06rxqm4wh4mcszrwb2dbgpxj3dqfx0rccyyjp091lbsncqm1gib0"))))
    (build-system qt-build-system)
    (native-inputs
     (list extra-cmake-modules pkg-config))
    (inputs
     (list libxkbcommon
           qtbase-5
           qtdeclarative
           qtwayland
           wayland
           wayland-protocols))
    (home-page "https://invent.kde.org/plasma/layer-shell-qt")
    (synopsis "Qt component for the Wayland ql-layer-shell protocol")
    (description "Qt component for the Wayland ql-layer-shell protocol.")
    (license license:gpl2+)))

(define-public kscreenlocker
  (package
    (name "kscreenlocker")
    (version "5.25.3")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://kde/stable/plasma/" version
                                  "/kscreenlocker-" version ".tar.xz"))
              (sha256
               (base32
                "1kii3r3j89avwyb00wrw80k5sj0q4wqgmy1q0yxfps9jk729k3wc"))))
    (build-system qt-build-system)
    (arguments
     `(#:tests? #f ;; TODO: make tests pass
       #:phases
       (modify-phases %standard-phases
         (add-before 'check 'check-setup
           (lambda* (#:key inputs outputs #:allow-other-keys)
             (system "Xvfb :1 -screen 0 640x480x24 &")
             (setenv "DISPLAY" ":1")
             #t))
         (delete 'check)
         ;; Tests use the installed library and require a DBus session.
         (add-after 'install 'check
           (lambda* (#:key tests? #:allow-other-keys)
             (if tests?
                 (begin
                   (setenv "CTEST_OUTPUT_ON_FAILURE" "1")
                   (invoke "dbus-launch" "ctest")))
             #t)))))
    (native-inputs
     (list extra-cmake-modules pkg-config
           ;; For tests.
           dbus xorg-server-for-tests))
    (inputs
     (list kcmutils
           kconfig
           kcrash
           kdeclarative
           kglobalaccel
           ki18n
           kidletime
           knotifications
           ktextwidgets
           kwayland
           kwindowsystem
           kxmlgui
           layer-shell-qt
           libseccomp ;for sandboxing the look'n'feel package
           libxcursor ;missing in CMakeList.txt
           libxi ;XInput, required for grabbing XInput2 devices
           linux-pam
           elogind ;optional loginctl support
           qtbase-5
           qtdeclarative
           qtx11extras
           solid
           wayland
           xcb-util-keysyms))
    (home-page "https://invent.kde.org/plasma/kscreenlocker")
    (synopsis "Screen locking library")
    (description
     "@code{kscreenlocker} is a library for creating secure lock screens.")
    (license license:gpl2+)))

(define-public libkscreen
  (package
    (name "libkscreen")
    (version "5.25.3")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "mirror://kde/stable/plasma/" version "/"
                           name "-" version ".tar.xz"))
       (sha256
        (base32 "1mxkrk04wcyw4xbfiyxbp5iwnhqr10yk39zx5bbjd9zag0vdi7z5"))))
    (build-system qt-build-system)
    (native-inputs
     (list extra-cmake-modules
           ;; For testing.
           dbus))
    (inputs
     (list kwayland libxrandr plasma-wayland-protocols
           qtbase-5 qtwayland wayland qtx11extras))
    (arguments
     '(#:tests? #f)) ; FIXME: 55% tests passed, 5 tests failed out of 11
    (home-page "https://community.kde.org/Solid/Projects/ScreenManagement")
    (synopsis "KDE's screen management software")
    (description "KScreen is the new screen management software for KDE Plasma
Workspaces which tries to be as magic and automatic as possible for users with
basic needs and easy to configure for those who want special setups.")
    (license license:gpl2+)))

(define-public libksysguard
  (package
    (name "libksysguard")
    (version "5.25.3")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "mirror://kde/stable/plasma/" version
                           "/libksysguard-" version ".tar.xz"))
       (sha256
        (base32 "1mrrrxjvqmrnkjwafvqrd2hlvl9gr9y4hn7dv0gf70lp5bl06i89"))))
    (native-inputs
     (list extra-cmake-modules pkg-config qttools))
    (inputs
     (list kauth
           kcompletion
           kconfig
           kconfigwidgets
           kcoreaddons
           kdeclarative
           kglobalaccel
           ki18n
           kiconthemes
           kio
           knewstuff
           kservice
           kwidgetsaddons
           kwindowsystem
           libnl
           libcap
           libpcap
           `(,lm-sensors "lib")
           plasma-framework
           qtbase-5
           qtdeclarative
           qtscript
           qtwebchannel
           qtwebengine
           qtwebkit
           qtx11extras
           zlib))
    (build-system qt-build-system)
    (arguments
     (list #:phases
           #~(modify-phases %standard-phases
               (replace 'check
                 (lambda* (#:key tests? #:allow-other-keys)
                   (when tests?
                     ;; TODO: Fix this failing test-case
                     (invoke "ctest" "-E" "processtest")))))))
    (home-page "https://userbase.kde.org/KSysGuard")
    (synopsis "Network enabled task and system monitoring")
    (description "KSysGuard can obtain information on system load and
manage running processes.  It obtains this information by interacting
with a ksysguardd daemon, which may also run on a remote system.")
    (license license:gpl3+)))

(define-public kwayland-server
  (package
    (name "kwayland-server")
    (version "5.24.4")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "mirror://kde/stable/plasma/" version
                    "/" name "-" version ".tar.xz"))
              (sha256
               (base32
                "1279nqhy1qyz84dkn23rvzak8bg71hbrp09jlhv9mkjdb3bhnyfi"))))
    (build-system qt-build-system)
    (native-inputs
     (list extra-cmake-modules pkg-config))
    (inputs
     (list plasma-wayland-protocols
           qtbase-5
           qtwayland
           kwayland
           wayland
           wayland-protocols-next))
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'patch-install-path
           (lambda _
             ;; Fixes errors including nonexistant /include/KF5
             (substitute* "src/server/CMakeLists.txt"
               (("KF5_INSTALL") "KDE_INSTALL"))))
         (replace 'check
           (lambda* (#:key tests? #:allow-other-keys)
             (when tests?
               (setenv "HOME" (getcwd))
               (setenv "XDG_RUNTIME_DIR" (getcwd))
               (setenv "QT_QPA_PLATFORM" "offscreen")
               (invoke "ctest" "-E" ;; Test fails inconsistently.
                       "kwayland-testDragAndDrop"))
             #t)))))
    (home-page "https://api.kde.org/kwayland-server/html/index.html")
    (synopsis "KDE wayland server component")
    (description "KWayland is a Qt-style API to interact with the wayland-client and
wayland-server API.")
    (license (list license:lgpl2.1
                   license:lgpl2.1+
                   license:lgpl3
                   license:expat
                   license:bsd-3))))

(define-public kwin
  (package
    (name "kwin")
    (version "5.24.4")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "mirror://kde/stable/plasma/" version
                          "/" name "-" version ".tar.xz"))
       (sha256
        (base32 "1qwcd6iw6yvpchiwmvq5nwsr465jmrmscf286mjrc65im4hj6572"))))
    (native-inputs
     (list extra-cmake-modules
           dbus
           kdoctools
           pkg-config
           qttools
           xorg-server-for-tests))
    (inputs
     (list breeze
           eudev
           fontconfig
           freetype
           hwdata
           kactivities
           kcmutils
           kcompletion
           kconfig
           kconfigwidgets
           kcoreaddons
           kcrash
           kdbusaddons
           kdeclarative
           kdecoration
           kglobalaccel
           ki18n
           kiconthemes
           kidletime
           kio
           kirigami
           knewstuff
           knotifications
           kpackage
           krunner
           kscreenlocker
           ktextwidgets
           kwayland
           kwayland-server
           kwindowsystem
           kxmlgui
           lcms
           libcap
           libepoxy
           libinput
           libxkbcommon
           pipewire-0.3
           plasma-framework
           plasma-wayland-protocols
           qtbase-5
           qtdeclarative
           qtwayland
           qtx11extras
           wayland
           wayland-protocols
           xcb-util ; fails at build time without this
           xcb-util-cursor
           xcb-util-keysyms
           xcb-util-wm
           xcmsdb
           xinput ;; XXX: Says disabled in configure phase
           xorg-server-xwayland
           zlib))
 ;;     * hwdata, <https://github.com/vcrhonek/hwdata>
 ;;   Runtime-only dependency needed for mapping monitor hardware vendor IDs to full names
 ;; * QtQuick.Controls-QMLModule, QML module 'QtQuick.Controls' is a runtime dependency.
 ;; * QtMultimedia-QMLModule, QML module 'QtMultimedia' is a runtime dependency.
 ;; * org.kde.kquickcontrolsaddons-QMLModule, QML module 'org.kde.kquickcontrolsaddons' is a runtime dependency.
 ;; * org.kde.plasma.core-QMLModule, QML module 'org.kde.plasma.core' is a runtime dependency.
 ;; * org.kde.plasma.components-QMLModule, QML module 'org.kde.plasma.components' is a runtime dependency.

   ;;   * QAccessibilityClient, KDE client-side accessibility library, <https://www.kde.org>
   ;; Required to enable accessibility features

    (build-system qt-build-system)
    (arguments
     `(#:tests? #f ;; Over 50 tests fail inconsistently.
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'patch
           (lambda* (#:key inputs #:allow-other-keys)
             ;; Make QDirIterator follow symlinks
             (substitute* '("src/plugins/kdecorations/aurorae/src/aurorae.cpp")
               (("(^\\s*QDirIterator it.path, QDirIterator::Subdirectories)(\\);)"
                 _ a b)
                (string-append a " | QDirIterator::FollowSymlinks" b)))
             (substitute* '("src/xwl/xwayland.cpp")
               (("(m_xwaylandProcess->setProgram.QStringLiteral..)(Xwayland)(...;)"
                 _ a Xwayland b)
                (string-append a (which "Xwayland") b)))
             (substitute* '("cmake/modules/Findhwdata.cmake")
               (("/usr/share")
                (string-append (assoc-ref inputs "hwdata") "/share")))
             #t))
         (replace 'check
           (lambda* (#:key tests? #:allow-other-keys)
             (when tests?
               (setenv "XDG_RUNTIME_DIR" (getcwd))
               (setenv "HOME"  (getcwd))
               (setenv "DISPLAY" ":1")
               (system "Xvfb :1 &")
               (sleep 5)
               ;; FIXME: Disable failing tests for now. Many of these tests fail inconsistently.
               (invoke "ctest" "-E" "(\
kwin-testActivation|\
kwin-testActivation-waylandonly|\
kwin-testDebugConsole|\
kwin-testDecorationInput-waylandonly|\
kwin-testDecorationInput|\
kwin-testDontCrashCursorPhysicalSizeEmpty-waylandonly|\
kwin-testDontCrashAuroraeDestroyDeco|\
kwin-testDontCrashNoBorder-waylandonly|\
kwin-testDontCrashCancelAnimation|\
kwin-testDontCrashGlxgears|\
kwin-testDontCrashUseractionsMenu-waylandonly|\
kwin-testDontCrashUseractionsMenu|\
kwin-testGlobalShortcuts|\
kwin-testInternalWindow-waylandonly|\
kwin-testIdleInhibition-waylandonly|\
kwin-testInputMethod|\
kwin-testInputStackingOrder-waylandonly|\
kwin-testKeyboardLayout-waylandonly|\
kwin-testKWinBindings|\
kwin-testLayerShellV1Client-waylandonly|\
kwin-testLibinputDevice|\
kwin-testLockScreen|\
kwin-testMaximized-waylandonly|\
kwin-testMaximized|\
kwin-testModiferOnlyShortcut|\
kwin-testNightColor-waylandonly|\
kwin-testNightColor|\
kwin-testNoGlobalShortcuts|\
kwin-testOutputManagement|\
kwin-testOutputManagement-waylandonly|\
kwin-testPlacement-waylandonly|\
kwin-testPlasmaSurface|\
kwin-testPlasmaSurface-waylandonly|\
kwin-testPlasmaWindow|\
kwin-testPlatformCursor|\
kwin-testPointerConstraints-waylandonly|\
kwin-testPointerInput|\
kwin-testQuickTiling|\
kwin-testSceneOpenGL-waylandonly|\
kwin-testSceneOpenGLES-waylandonly|\
kwin-testSceneOpenGLES|\
kwin-testSceneQPainter|\
kwin-testScreenChanges-waylandonly|\
kwin-testScreens|\
kwin-testShade|\
kwin-testShowingDesktop-waylandonly|\
kwin-testStruts|\
kwin-testTabBox-waylandonly|\
kwin-testTouchInput|\
kwin-testTouchInput-waylandonly|\
kwin-testVirtualDesktop-waylandonly|\
kwin-testVirtualKeyboardDBus-waylandonly|\
kwin-testWindowSelection-waylandonly|\
kwin-testX11Client|\
kwin-testXdgShellClient-waylandonly|\
kwin-testXdgShellClient|\
kwin-testXwaylandSelections)")))))))
    (home-page "https://userbase.kde.org/KWin")
    (synopsis "KDE Plasma Window Manager")
    (description
     "KWin is an easy to use, but flexible, composited Window Manager for
Xorg windowing systems (Wayland, X11) on Linux.  Its primary usage is in
conjunction with the KDE Plasma Desktop.")
    (license (list license:bsd-2
                   license:bsd-3
                   license:expat
                   license:gpl2
                   license:gpl2+
                   license:gpl3
                   license:gpl3+
                   license:lgpl2.0
                   license:lgpl2.0+
                   license:lgpl2.1
                   license:lgpl3))))

(define-public plasma-workspace
  (package
    (name "plasma-workspace")
    (version "5.24.3")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "mirror://kde/stable/plasma/" version
                    "/" name "-" version ".tar.xz"))
              (sha256
               (base32
                "1d1a8k75q0rdbbwkx8p1i38hc6xv9kggvfm6973lh3q0pc75qk0h"))))
    (build-system qt-build-system)
    (native-inputs
     (list extra-cmake-modules
           pkg-config
           qtsvg
           qttools))
    (inputs
     (list ;kplasma
           ;kplasmaquick
           ;packagekit-qt
           appstream-qt
           baloo
           breeze
           breeze-icons
           fontconfig
           iso-codes
           kactivities
           kactivities-stats
           karchive
           kcmutils
           kcoreaddons
           kcrash
           kdbusaddons
           kdeclarative
           kded
           kdesu
           kdoctools
           kglobalaccel
           kguiaddons
           kholidays
           ki18n
           kiconthemes
           kidletime
           kinit
           kio
           kirigami
           kitemmodels
           knewstuff
           knotifications
           knotifyconfig
           kpackage
           kpeople
           kqtquickcharts ;; XXX: not found?
           krunner
           kscreenlocker
           ktexteditor
           ktextwidgets
           kunitconversion
           kuserfeedback
           kwallet
           kwayland
           kwin
           layer-shell-qt
           libkscreen
           libksysguard
           libqalculate gmp mpfr
           libsm
           libxft
           libxkbcommon
           libxrender
           libxtst
           networkmanager-qt
           phonon
           pipewire-0.3
           plasma-wayland-protocols
           prison
           qtbase-5
           qtdeclarative
           qtwayland
           qtx11extras
           wayland
           wayland-protocols-next

           xcb-util
           xcb-util-image))
    ;;     -- The following RUNTIME packages have not been found:
    ;;  * KF5QuickCharts (required version >= 5.89), Used for rendering charts
    ;;  * KIOExtras, Common KIO slaves for operations.
    ;;    Show thumbnails in wallpaper selection.
    ;;  * KIOFuse, Provide KIO support to legacy applications.
    ;;  * org.kde.prison-QMLModule, QML module 'org.kde.prison' is a runtime dependency.
    ;;  * org.kde.plasma.core-QMLModule, QML module 'org.kde.plasma.core' is a runtime dependency.
    ;;  * IsoCodes, ISO language, territory, currency, script codes and their translations, <https://salsa.debian.org/iso-codes-team/iso-codes>
    ;;    Translation of country names in digital clock applet
    ;;  * AppMenuGtkModule, Application Menu GTK+ Module, <https://github.com/rilian-la-te/vala-panel-appmenu/tree/master/subprojects/appmenu-gtk-module>
    ;; -- The following OPTIONAL packages have not been found:
    ;;  * PackageKitQt5, Software Manager integration
    ;;    Used to install additional language packages on demand
    ;; kf.package: Invalid metadata for package structure "Plasma/LookAndFeel"
    ;; Package type "Plasma/LookAndFeel" not found
    ;; TODO: startkde patch, xsetroot, xrdb, xmessage, ...
    (arguments
     (list #:phases
           #~(modify-phases %standard-phases
               (add-after 'unpack 'patch-wallpaper
                 (lambda _
                   (substitute* "sddm-theme/theme.conf.cmake"
                     (("background=..KDE_INSTALL_FULL_WALLPAPERDIR.")
                      (string-append "background=" #$breeze "/share/wallpapers")))))
               (replace 'check
                 (lambda* (#:key tests? #:allow-other-keys)
                   (when tests?
                     (setenv "HOME" (getcwd))
                     (setenv "XDG_RUNTIME_DIR" (getcwd))
                     (setenv "XDG_CACHE_HOME" (getcwd))
                     (setenv "QT_QPA_PLATFORM" "offscreen")
                     ;; Disable failing tests for now.
                     (invoke "ctest" "-E" "lookandfeel-kcmTest|locationsrunnertest|\
tst_triangleFilter|systemtraymodeltest|testdesktop")))))))
    (home-page "https://kde.org/plasma-desktop/")
    (synopsis "Plasma for the Desktop")
    (description "Plasma Desktop offers a beautiful looking desktop that takes
complete advantage of modern computing technology. Through the use of visual
effects and scalable graphics, the desktop experience is not only smooth but
also pleasant to the eye. The looks of Plasma Desktop not only provide
beauty, they are also used to support and improve your computer
activities effectively, without being distracting.")
    (license (list license:bsd-3 license:gpl2+ license:gpl3 license:lgpl2.1+
license:lgpl3))))

(define-public plasma-desktop
  (package
    (name "plasma-desktop")
    (version "5.24.3")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "mirror://kde/stable/plasma/" version
                    "/" name "-" version ".tar.xz"))
              (sha256
               (base32
                "1lwizprs6nk6nibydwkwmpi9c7c50lvg2k188pb6ddz2sb7pwgjq"))))
    (build-system qt-build-system)
    (native-inputs
     (list extra-cmake-modules
           kdoctools
           pkg-config
           qtsvg
           qttools))
    (inputs
     (list ;kplasma
           ;kplasmaquick
           ;packagekit-qt

      kdelibs4support
      ;kaccounts
      plasma-workspace

           appstream-qt
           baloo
           breeze
           breeze-icons
           fontconfig
           iso-codes
           kactivities
           kactivities-stats
           karchive
           kcmutils
           kcoreaddons
           kcrash
           kdbusaddons
           kdeclarative
           kded
           kdesu
           kglobalaccel
           kguiaddons
           kholidays
           ki18n
           kiconthemes
           kidletime
           kinit
           kio
           kirigami
           kitemmodels
           knewstuff
           knotifications
           knotifyconfig
           kpackage
           kpeople
           kqtquickcharts ;; XXX: not found?
           krunner
           kscreenlocker
           ktexteditor
           ktextwidgets
           kunitconversion
           kuserfeedback
           kwallet
           kwayland
           kwin
           layer-shell-qt
           libkscreen
           libksysguard
           libqalculate gmp mpfr
           libsm
           libxft
           libxkbcommon
           libxrender
           libxtst
           networkmanager-qt
           phonon
           pipewire-0.3
           plasma-wayland-protocols
           prison
           qtbase-5
           qtdeclarative
           qtwayland
           qtx11extras
           wayland
           wayland-protocols
           xcb-util
           xcb-util-image))
    (arguments
     (list #:phases
           #~(modify-phases %standard-phases

               (replace 'check
                 (lambda* (#:key tests? #:allow-other-keys)
                   (when tests?
                     (setenv "HOME" (getcwd))
                     (setenv "XDG_RUNTIME_DIR" (getcwd))
                     (setenv "XDG_CACHE_HOME" (getcwd))
                     (setenv "QT_QPA_PLATFORM" "offscreen")
                     ;; Disable failing tests for now.
                     (invoke "ctest"))
                   #t)))))
    (home-page "https://kde.org/plasma-desktop/")
    (synopsis "")
    (description "")
    (license (list license:bsd-3 license:gpl2+ license:gpl3 license:lgpl2.1+
license:lgpl3))))

debug log:

solving 7fe55ecbf5 ...
found 7fe55ecbf5 in https://yhetil.org/guix-patches/En4KqcrcEyninR2sZclVYdKPOjMEo4oiDgAl7KOapqSYRMgwd8mt1bhMxOi6mFFU62oARV9uVw4uMGlRNu1-LaN3rRPE_lFjxQPLZT4hUPk=@protonmail.com/
found ac1dae4764 in https://yhetil.org/guix-patches/En4KqcrcEyninR2sZclVYdKPOjMEo4oiDgAl7KOapqSYRMgwd8mt1bhMxOi6mFFU62oARV9uVw4uMGlRNu1-LaN3rRPE_lFjxQPLZT4hUPk=@protonmail.com/
found f1a78efbc1 in https://yhetil.org/guix-patches/En4KqcrcEyninR2sZclVYdKPOjMEo4oiDgAl7KOapqSYRMgwd8mt1bhMxOi6mFFU62oARV9uVw4uMGlRNu1-LaN3rRPE_lFjxQPLZT4hUPk=@protonmail.com/
found 74147c7a50 in https://yhetil.org/guix-patches/En4KqcrcEyninR2sZclVYdKPOjMEo4oiDgAl7KOapqSYRMgwd8mt1bhMxOi6mFFU62oARV9uVw4uMGlRNu1-LaN3rRPE_lFjxQPLZT4hUPk=@protonmail.com/
found e190d6c50d in https://yhetil.org/guix-patches/En4KqcrcEyninR2sZclVYdKPOjMEo4oiDgAl7KOapqSYRMgwd8mt1bhMxOi6mFFU62oARV9uVw4uMGlRNu1-LaN3rRPE_lFjxQPLZT4hUPk=@protonmail.com/
found 7ebc08b965 in https://yhetil.org/guix-patches/SBPtopeaZeRjjm8ky-0TTYYSPNx5_rf6ilBbUzrihVGbKOfmfT2x6WL1Ghd48zrUX7_askh7UDKdUabDp0DSuYHGfxwEzdkAQoRg_U98oHQ=@protonmail.com/ ||
	https://yhetil.org/guix-patches/En4KqcrcEyninR2sZclVYdKPOjMEo4oiDgAl7KOapqSYRMgwd8mt1bhMxOi6mFFU62oARV9uVw4uMGlRNu1-LaN3rRPE_lFjxQPLZT4hUPk=@protonmail.com/
found 2c723d34f8 in https://yhetil.org/guix-patches/SBPtopeaZeRjjm8ky-0TTYYSPNx5_rf6ilBbUzrihVGbKOfmfT2x6WL1Ghd48zrUX7_askh7UDKdUabDp0DSuYHGfxwEzdkAQoRg_U98oHQ=@protonmail.com/ ||
	https://yhetil.org/guix-patches/En4KqcrcEyninR2sZclVYdKPOjMEo4oiDgAl7KOapqSYRMgwd8mt1bhMxOi6mFFU62oARV9uVw4uMGlRNu1-LaN3rRPE_lFjxQPLZT4hUPk=@protonmail.com/
found 2317cbec5a in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 2317cbec5a687f430885ae5dfff816de27825d80	gnu/packages/kde-plasma.scm

applying [1/7] https://yhetil.org/guix-patches/SBPtopeaZeRjjm8ky-0TTYYSPNx5_rf6ilBbUzrihVGbKOfmfT2x6WL1Ghd48zrUX7_askh7UDKdUabDp0DSuYHGfxwEzdkAQoRg_U98oHQ=@protonmail.com/
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 2317cbec5a..2c723d34f8 100644

Checking patch gnu/packages/kde-plasma.scm...
Applied patch gnu/packages/kde-plasma.scm cleanly.

skipping https://yhetil.org/guix-patches/En4KqcrcEyninR2sZclVYdKPOjMEo4oiDgAl7KOapqSYRMgwd8mt1bhMxOi6mFFU62oARV9uVw4uMGlRNu1-LaN3rRPE_lFjxQPLZT4hUPk=@protonmail.com/ for 2c723d34f8
index at:
100644 2c723d34f8779337fda7ba6a009082aeebd57d56	gnu/packages/kde-plasma.scm

applying [2/7] https://yhetil.org/guix-patches/SBPtopeaZeRjjm8ky-0TTYYSPNx5_rf6ilBbUzrihVGbKOfmfT2x6WL1Ghd48zrUX7_askh7UDKdUabDp0DSuYHGfxwEzdkAQoRg_U98oHQ=@protonmail.com/
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 2c723d34f8..7ebc08b965 100644

Checking patch gnu/packages/kde-plasma.scm...
Applied patch gnu/packages/kde-plasma.scm cleanly.

skipping https://yhetil.org/guix-patches/En4KqcrcEyninR2sZclVYdKPOjMEo4oiDgAl7KOapqSYRMgwd8mt1bhMxOi6mFFU62oARV9uVw4uMGlRNu1-LaN3rRPE_lFjxQPLZT4hUPk=@protonmail.com/ for 7ebc08b965
index at:
100644 7ebc08b965597490a0bee1da488c4a2edfeebee6	gnu/packages/kde-plasma.scm

applying [3/7] https://yhetil.org/guix-patches/En4KqcrcEyninR2sZclVYdKPOjMEo4oiDgAl7KOapqSYRMgwd8mt1bhMxOi6mFFU62oARV9uVw4uMGlRNu1-LaN3rRPE_lFjxQPLZT4hUPk=@protonmail.com/
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 7ebc08b965..e190d6c50d 100644


applying [4/7] https://yhetil.org/guix-patches/En4KqcrcEyninR2sZclVYdKPOjMEo4oiDgAl7KOapqSYRMgwd8mt1bhMxOi6mFFU62oARV9uVw4uMGlRNu1-LaN3rRPE_lFjxQPLZT4hUPk=@protonmail.com/
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index e190d6c50d..74147c7a50 100644


applying [5/7] https://yhetil.org/guix-patches/En4KqcrcEyninR2sZclVYdKPOjMEo4oiDgAl7KOapqSYRMgwd8mt1bhMxOi6mFFU62oARV9uVw4uMGlRNu1-LaN3rRPE_lFjxQPLZT4hUPk=@protonmail.com/
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 74147c7a50..f1a78efbc1 100644


applying [6/7] https://yhetil.org/guix-patches/En4KqcrcEyninR2sZclVYdKPOjMEo4oiDgAl7KOapqSYRMgwd8mt1bhMxOi6mFFU62oARV9uVw4uMGlRNu1-LaN3rRPE_lFjxQPLZT4hUPk=@protonmail.com/
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index f1a78efbc1..ac1dae4764 100644


applying [7/7] https://yhetil.org/guix-patches/En4KqcrcEyninR2sZclVYdKPOjMEo4oiDgAl7KOapqSYRMgwd8mt1bhMxOi6mFFU62oARV9uVw4uMGlRNu1-LaN3rRPE_lFjxQPLZT4hUPk=@protonmail.com/
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index ac1dae4764..7fe55ecbf5 100644

Checking patch gnu/packages/kde-plasma.scm...
Applied patch gnu/packages/kde-plasma.scm cleanly.
Checking patch gnu/packages/kde-plasma.scm...
Applied patch gnu/packages/kde-plasma.scm cleanly.
Checking patch gnu/packages/kde-plasma.scm...
Applied patch gnu/packages/kde-plasma.scm cleanly.
Checking patch gnu/packages/kde-plasma.scm...
Applied patch gnu/packages/kde-plasma.scm cleanly.
Checking patch gnu/packages/kde-plasma.scm...
Applied patch gnu/packages/kde-plasma.scm cleanly.

index at:
100644 7fe55ecbf5a2fc2157bb8503dd6865a6c67849cf	gnu/packages/kde-plasma.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).