unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob f98a9c4af961ca3d1059cfa14b59f3c0b3f35441 9470 bytes (raw)
name: gnu/packages/kde-xyz.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
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2023 Sughosha <sughosha@disroot.org>
;;;
;;; 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-xyz)
  #:use-module (guix build-system copy)
  #:use-module (guix build-system qt)
  #:use-module (guix gexp)
  #:use-module (guix git-download)
  #:use-module (guix packages)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (gnu packages gnome-xyz)
  #:use-module (gnu packages kde-frameworks)
  #:use-module (gnu packages kde-plasma)
  #:use-module (gnu packages qt)
  #:use-module (gnu packages xorg))

(define-public flat-remix-kde-theme
  (let ((commit "18ac464d5b77dd140aeb6c6b98d687c086959247")
        (revision "0"))
    (package
      (name "flat-remix-kde-theme")
      (version (git-version "0" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri
          (git-reference
           (url "https://github.com/daniruiz/flat-remix-kde")
           (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "05wxcjpg3qgyc2jiidb8506s1ah7yhilb1ifk2xd61xmy7d1xmz6"))))
      (build-system copy-build-system)
      (arguments
       `(#:install-plan
         `(("." "/share"
            #:include-regexp ("/aurorae/" "/color-schemes/" "/plasma/")))))
      (propagated-inputs
       (list flat-remix-gtk-theme flat-remix-icon-theme))
      (home-page "https://drasite.com/flat-remix-kde")
      (synopsis "KDE  theme with material design")
      (description "Flat Remix KDE is a KDE theme inspired by material design.
It is mostly flat using a colorful palette with some shadows, highlights, and
gradients for some depth.")
    (license license:gpl3+))))

(define-public plasma-shell-applet-advanced-radio-player
  ;; Version is not tagget, but given in package/metadata.desktop.
  (let ((commit "894973f4d5948ce400c2a3d28def4cea3c274c47") ;version 2.4
        (revision "0"))
    (package
      (name "plasma-shell-applet-advanced-radio-player")
      (version (git-version "2.4" revision commit))
      (source (origin
                (method git-fetch)
                (uri (git-reference
                       (url "https://invent.kde.org/saurov/arp")
                       (commit commit)))
                (file-name (git-file-name name version))
                (sha256
                 (base32
                  "17h79bl6akyhjh53hdp7g4a7kki8v8m2zvqs1qi0isf3nlvz0dwm"))))
      (build-system copy-build-system)
      (arguments
       `(#:install-plan
         `(("package" "/share/plasma/plasmoids/org.kde.plasma.advancedradio"))))
      (propagated-inputs
       (list qtmultimedia-5))
      (home-page "https://invent.kde.org/saurov/arp")
      (synopsis "Radio player extension for Plasma shell")
      (description
       "Advanced Radio Player is a radio player extension for Plasma shell,
with editable list of stations.")
    (license license:lgpl2.0+))))

(define-public plasma-shell-applet-better-inline-clock
  (let ((commit "bbad71b48073879f16b484788d01831ad53316b5") ;version 3.1
        (revision "0"))
    (package
      (name "plasma-shell-applet-better-inline-clock")
      (version "3.1")
      (source (origin
                (method git-fetch)
                (uri (git-reference
                       (url "https://github.com/MarianArlt/kde-plasmoid-betterinlineclock")
                       (commit commit)))
                (file-name (git-file-name name version))
                (sha256
                 (base32
                  "079k170dvga736hv4pi1n4mbqdwk1wl6n7x4blf22mn53zlcrl84"))))
      (build-system copy-build-system)
      (arguments
       `(#:install-plan
         `(("org.kde.plasma.betterinlineclock"
            "/share/plasma/plasmoids/org.kde.plasma.betterinlineclock"))))
      (home-page "https://github.com/MarianArlt/kde-plasmoid-betterinlineclock")
      (synopsis "Single line clock applet for Plasma shell")
      (description
       "This package provides single line clock applet for Plasma shell.")
      (license license:gpl2+))))

(define-public plasma-shell-applet-window-appmenu
  ;; This commit fixes appmenu being unresponsive when hovering over other
  ;; options after clicking on one.
  (let ((commit "e044296256c866177c5c929f9280fb86b26dbf06")
        (revision "0"))
    (package
      (name "plasma-shell-applet-window-appmenu")
      (version (git-version "0.8.0" revision commit))
      (source (origin
                (method git-fetch)
                (uri (git-reference
                       (url "https://github.com/psifidotos/applet-window-appmenu")
                       (commit commit)))
                (file-name (git-file-name name version))
                (sha256
                 (base32
                  "0n8jgn6vaw4ncvrqm1snn6izg16by1f9rzkjypphr8a6z65nz2dn"))))
      (build-system qt-build-system)
      (native-inputs
       (list extra-cmake-modules))
      (inputs
       (list libsm
             kconfigwidgets
             kdecoration
             kirigami
             kitemmodels
             kwayland
             kwindowsystem
             plasma-framework
             plasma-workspace
             qtdeclarative-5
             qtx11extras))
      (home-page "https://github.com/psifidotos/applet-window-appmenu")
      (synopsis "Appmenu applet for Plasma shell")
      (description
       "This plasmoid shows the current window appmenu in Plasma panels or
Latte Dock.")
      (license license:gpl2+))))

(define-public plasma-shell-applet-window-buttons
  (package
    (name "plasma-shell-applet-window-buttons")
    (version "0.11.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/psifidotos/applet-window-buttons")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1wbiw5gz6fp8rf2f8sd3ibgkx9abvi0d3s0xz6m3p6n4cvdky323"))
              (patches
               (search-patches
                 "plasma-shell-extension-window-buttons-applet-fix-build.patch"))))
    (build-system qt-build-system)
    (native-inputs
     (list extra-cmake-modules))
    (inputs
     (list kcmutils
           kconfigwidgets
           kcoreaddons
           kdeclarative
           ki18n
           kservice
           kwindowsystem
           plasma-framework
           qtdeclarative-5))
    (propagated-inputs
     (list kdecoration))
    (home-page "https://github.com/psifidotos/applet-window-buttons")
    (synopsis "Window buttons in Plasma panels")
    (description
     "This plasmoid shows window buttons in Plasma panels or Latte Dock.")
    (license license:gpl2+)))

(define-public plasma-shell-applet-window-title
  (package
    (name "plasma-shell-applet-window-title")
    (version "0.7.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/psifidotos/applet-window-title")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "01n663sy638v80gfclhy50xr22wlhg00yhgzwnsiqjvk42if49ib"))))
    (build-system copy-build-system)
    (arguments
     `(#:install-plan
       `(("." "/share/plasma/plasmoids/org.kde.windowtitle"
          #:include-regexp ("/contents/" "metadata.desktop")))))
    (inputs
     (list kdeclarative
           kirigami
           plasma-workspace))
    (home-page "https://github.com/psifidotos/applet-window-title")
    (synopsis "Application title and icon for active window for Plasma shell")
    (description
     "This plasmoid shows the current window title and icon in Plasma panels or
Latte Dock.")
    (license license:gpl2+)))

(define-public plasma-shell-wallpaper-active-blur
  (package
    (name "plasma-shell-wallpaper-active-blur")
    (version "2.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/bouteillerAlan/blurredwallpaper")
                     (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0b688d4p8n1wkhw3bp1zhxi5xbx806fy5hcgc8jrjj2kaclk408n"))))
    (build-system copy-build-system)
    (arguments
     `(#:install-plan
       `(("." "/share/plasma/wallpapers/a2n.blur"
          #:include-regexp ("/assets/" "/contents/" "metadata.json")))))
    (home-page "https://github.com/bouteillerAlan/blurredwallpaper")
    (synopsis "Blurred wallpaper plugin for Plasma shell")
    (description
     "This Plasma wallpaper plugin blurs the wallpaper when a window is
active.")
    (license license:gpl2+)))

debug log:

solving f98a9c4af9 ...
found f98a9c4af9 in https://yhetil.org/guix-patches/7864db3d6d178e737e763b2cf13af02b70e1caca.1698783239.git.sughosha@disroot.org/
found c9e8308fbf in https://yhetil.org/guix-patches/e936a8d03a273973c35f7d3684acf61fa33c81a4.1698783239.git.sughosha@disroot.org/
found 42d5046cf2 in https://yhetil.org/guix-patches/a7d52d165548905269f3af5ef53af669ddad007a.1698783239.git.sughosha@disroot.org/
found cde12d45b4 in https://yhetil.org/guix-patches/685e6bae23ac86545ad5be6292d0c12eb6eba0bf.1698783239.git.sughosha@disroot.org/
found 5aeae290c8 in https://yhetil.org/guix-patches/72683de75616dfc9532ee727ed601bc56b79f7f1.1698783239.git.sughosha@disroot.org/
found 7fdd107750 in https://yhetil.org/guix-patches/29bf463ad0c5cdfb6510606699ae6af1b34522b8.1698783239.git.sughosha@disroot.org/
found 840014de5c in https://yhetil.org/guix-patches/1074f7566ecfba8ef63fee9696b472bb26d7eea0.1698783239.git.sughosha@disroot.org/ ||
	https://yhetil.org/guix-patches/6a83cfeaef829634d0168be7dd58e2ce0dfe3825.1699058090.git.sughosha@disroot.org/ ||
	https://yhetil.org/guix-patches/64adf38a4a7c17242b6c622596f9ee1b4f70b2b1.1698969760.git.sughosha@disroot.org/

applying [1/7] https://yhetil.org/guix-patches/1074f7566ecfba8ef63fee9696b472bb26d7eea0.1698783239.git.sughosha@disroot.org/
diff --git a/gnu/packages/kde-xyz.scm b/gnu/packages/kde-xyz.scm
new file mode 100644
index 0000000000..840014de5c

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

skipping https://yhetil.org/guix-patches/6a83cfeaef829634d0168be7dd58e2ce0dfe3825.1699058090.git.sughosha@disroot.org/ for 840014de5c
skipping https://yhetil.org/guix-patches/64adf38a4a7c17242b6c622596f9ee1b4f70b2b1.1698969760.git.sughosha@disroot.org/ for 840014de5c
index at:
100644 840014de5c2f9a95be8e71ab1ebfed62409e133c	gnu/packages/kde-xyz.scm

applying [2/7] https://yhetil.org/guix-patches/29bf463ad0c5cdfb6510606699ae6af1b34522b8.1698783239.git.sughosha@disroot.org/
diff --git a/gnu/packages/kde-xyz.scm b/gnu/packages/kde-xyz.scm
index 840014de5c..7fdd107750 100644


applying [3/7] https://yhetil.org/guix-patches/72683de75616dfc9532ee727ed601bc56b79f7f1.1698783239.git.sughosha@disroot.org/
diff --git a/gnu/packages/kde-xyz.scm b/gnu/packages/kde-xyz.scm
index 7fdd107750..5aeae290c8 100644


applying [4/7] https://yhetil.org/guix-patches/685e6bae23ac86545ad5be6292d0c12eb6eba0bf.1698783239.git.sughosha@disroot.org/
diff --git a/gnu/packages/kde-xyz.scm b/gnu/packages/kde-xyz.scm
index 5aeae290c8..cde12d45b4 100644


applying [5/7] https://yhetil.org/guix-patches/a7d52d165548905269f3af5ef53af669ddad007a.1698783239.git.sughosha@disroot.org/
diff --git a/gnu/packages/kde-xyz.scm b/gnu/packages/kde-xyz.scm
index cde12d45b4..42d5046cf2 100644


applying [6/7] https://yhetil.org/guix-patches/e936a8d03a273973c35f7d3684acf61fa33c81a4.1698783239.git.sughosha@disroot.org/
diff --git a/gnu/packages/kde-xyz.scm b/gnu/packages/kde-xyz.scm
index 42d5046cf2..c9e8308fbf 100644


applying [7/7] https://yhetil.org/guix-patches/7864db3d6d178e737e763b2cf13af02b70e1caca.1698783239.git.sughosha@disroot.org/
diff --git a/gnu/packages/kde-xyz.scm b/gnu/packages/kde-xyz.scm
index c9e8308fbf..f98a9c4af9 100644

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

index at:
100644 f98a9c4af961ca3d1059cfa14b59f3c0b3f35441	gnu/packages/kde-xyz.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).