diff options
author | Sughosha <sughosha@proton.me> | 2022-06-22 08:08:04 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-06-26 16:56:19 +0200 |
commit | 33536ff4388b40ba3e2cdd38720ce7a2aa72d3e2 (patch) | |
tree | 01e68a118b5ff3e2ae9279d1d07c250b5563bdf8 | |
parent | gnu: Add gnome-shell-extension-radio. (diff) | |
download | guix-33536ff4388b40ba3e2cdd38720ce7a2aa72d3e2.tar.gz guix-33536ff4388b40ba3e2cdd38720ce7a2aa72d3e2.tar.bz2 guix-33536ff4388b40ba3e2cdd38720ce7a2aa72d3e2.tar.xz |
gnu: Add gnome-shell-extension-sound-output-device-chooser.
* gnu/packages/gnome-xyz.scm
(gnome-shell-extension-sound-output-device-chooser): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
-rw-r--r-- | gnu/packages/gnome-xyz.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 941f2b0cd6..35e5969775 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm | |||
@@ -1018,6 +1018,39 @@ GNOME Shell, including the top panel, dash and overview.") | |||
1018 | directly inside GNOME Shell. It can manage stations and play streams.") | 1018 | directly inside GNOME Shell. It can manage stations and play streams.") |
1019 | (license license:gpl3+))) | 1019 | (license license:gpl3+))) |
1020 | 1020 | ||
1021 | (define-public gnome-shell-extension-sound-output-device-chooser | ||
1022 | (package | ||
1023 | (name "gnome-shell-extension-sound-output-device-chooser") | ||
1024 | (version "43") | ||
1025 | (source | ||
1026 | (origin | ||
1027 | (method git-fetch) | ||
1028 | (uri (git-reference | ||
1029 | (url "https://github.com/kgshank/gse-sound-output-device-chooser") | ||
1030 | (commit version))) | ||
1031 | (file-name (git-file-name name version)) | ||
1032 | (sha256 | ||
1033 | (base32 | ||
1034 | "1qk6ypyqbv8zwwlky6cgk9hgp1zh32jmzw4wza200g4v94ifkwm9")))) | ||
1035 | (build-system gnu-build-system) | ||
1036 | (arguments | ||
1037 | (list | ||
1038 | #:tests? #f ; no check target | ||
1039 | #:make-flags #~(list (string-append "INSTALL_DIR=" | ||
1040 | #$output | ||
1041 | "/share/gnome-shell/extensions")) | ||
1042 | #:phases | ||
1043 | #~(modify-phases %standard-phases (delete 'configure)))) | ||
1044 | (native-inputs (list gettext-minimal `(,glib "bin"))) | ||
1045 | (inputs (list python)) | ||
1046 | (home-page | ||
1047 | "https://extensions.gnome.org/extension/906/sound-output-device-chooser") | ||
1048 | (synopsis "Sound output chooser for GNOME Shell") | ||
1049 | (description "This extension shows a list of sound output and input devices | ||
1050 | in the status menu below the volume slider. Various active ports like HDMI, | ||
1051 | Speakers etc. of the same device are also displayed for selection.") | ||
1052 | (license license:gpl3+))) | ||
1053 | |||
1021 | (define-public arc-theme | 1054 | (define-public arc-theme |
1022 | (package | 1055 | (package |
1023 | (name "arc-theme") | 1056 | (name "arc-theme") |