~ruther/guix-exprs

ref: f5d579193651a8bf1d61a17c5c8821883f337061 guix-exprs/ruther/packages/qt.scm -rw-r--r-- 1.4 KiB
f5d57919 — Rutherther fix: wayland display service, add x wayland display service 20 days ago
                                                                                
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
(define-module (ruther packages qt)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (gnu packages xorg)
  #:use-module (gnu packages xdisorg)
  #:use-module (gnu packages freedesktop)
  #:use-module (gnu packages qt)
  #:use-module (guix build-system cmake)
  #:use-module (guix build-system qt)
  #:use-module (guix download)
  #:use-module (guix git-download))

(define-public spotify-qt
  (package
   (name "spotify-qt")
   (version "3.11")
   (source
    (origin
     (method git-fetch)
     (uri (git-reference
           (url "https://github.com/kraxarn/spotify-qt")
           (commit (string-append "v" version))))
     (sha256
      (base32 "0n59hsd4r4s88db1yskxarqpkrdsx7dldi1a4nrn8r2qgcn88vqf"))))
   (inputs
    (list libxcb qtbase qtsvg))
   (build-system qt-build-system)
   (arguments
    `(#:tests? #f
      #:qtbase ,qtbase))
   (synopsis "Lightweight Spotify client using Qt ")
   (description "An unofficial Spotify client using Qt as a simpler,
lighter alternative to the official client.
Please note that you need an actual Spotify client running,
for example librespot, which can be configured from within the app.")
   (license license:gpl3)
   (home-page "https://github.com/kraxarn/spotify-qt")))

(define-public spotify-qt-wayland
  (package/inherit spotify-qt
   (name "spotify-qt-wayland")
   (inputs (modify-inputs
            (package-inputs spotify-qt)
            (append qtwayland)))))
Do not follow this link