emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#39422: closed ([PATCH] gnu: Add pasystray.)


From: GNU bug Tracking System
Subject: bug#39422: closed ([PATCH] gnu: Add pasystray.)
Date: Fri, 07 Feb 2020 23:43:01 +0000

Your message dated Fri, 7 Feb 2020 18:42:09 -0500
with message-id <address@hidden>
and subject line Re: [bug#39422] [PATCH] gnu: Add pasystray.
has caused the debbugs.gnu.org bug report #39422,
regarding [PATCH] gnu: Add pasystray.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
39422: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39422
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add pasystray. Date: Tue, 4 Feb 2020 10:31:23 -0500
* gnu/packages/gtk.scm (pasystray): New variable.
---
 gnu/packages/gtk.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index f934eabe27..0dc83cf473 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -22,6 +22,7 @@
 ;;; Copyright © 2018 Pierre Neidhardt <address@hidden>
 ;;; Copyright © 2019 Meiyo Peng <address@hidden>
 ;;; Copyright © 2019 Giacomo Leidi <address@hidden>
+;;; Copyright © 2020 Amin Bandali <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -53,6 +54,7 @@
   #:use-module (gnu packages)
   #:use-module (gnu packages algebra)
   #:use-module (gnu packages autotools)
+  #:use-module (gnu packages avahi)
   #:use-module (gnu packages base)
   #:use-module (gnu packages texinfo)
   #:use-module (gnu packages check)
@@ -75,6 +77,7 @@
   #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages pretty-print)
+  #:use-module (gnu packages pulseaudio)
   #:use-module (gnu packages python)
   #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages guile)
@@ -1892,3 +1895,41 @@ displayed on the other side of the bus.")
 
     ;; Dual-licensed under either LGPLv2.1 or LGPLv3.
     (license (list license:lgpl2.1 license:lgpl3))))
+
+(define-public pasystray
+  (package
+    (name "pasystray")
+    (version "0.7.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/christophgysin/pasystray.git";)
+             (commit (string-append name "-" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0xx1bm9kimgq11a359ikabdndqg5q54pn1d1dyyjnrj0s41168fk"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'bootstrap 'remove-bootstrap.sh
+           (lambda _
+             (delete-file "bootstrap.sh") ; not useful in the context of Guix
+             #t)))))
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)           ; for aclocal
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("pulseaudio" ,pulseaudio)
+       ("avahi" ,avahi)
+       ("gtk+" ,gtk+)
+       ("libx11" ,libx11)
+       ("libnotify" ,libnotify)))
+    (home-page "https://github.com/christophgysin/pasystray";)
+    (synopsis "PulseAudio controller for the system tray")
+    (description "@command{pasystray} enables control of various
+PulseAudio server settings from the X11 system tray.  See the project
+README.md for a detailed list of features.")
+    (license license:lgpl2.1+)))
-- 
2.25.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#39422] [PATCH] gnu: Add pasystray. Date: Fri, 7 Feb 2020 18:42:09 -0500
On Tue, Feb 04, 2020 at 08:36:05PM -0500, Amin Bandali wrote:
> From 025f5eea0fb0508d0306d3c476b3c47c4fc9273c Mon Sep 17 00:00:00 2001
> From: Amin Bandali <address@hidden>
> Date: Tue, 4 Feb 2020 20:31:49 -0500
> Subject: [PATCH v2] gnu: Add pasystray.
> 
> * gnu/packages/pulseaudio.scm (pasystray): New variable.

Thanks! Pushed as d9e2f7b284f124b48b9fee150a3c06b5e0170049

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]