@@ 1,71 0,0 @@
-;;; Copyright © 2020 Amin Bandali <mab@gnu.org>
-;;;
-;;; This file is not part of GNU Guix, but extends it and is
-;;; distributed under the same license as 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 (bandali packages gtk)
- #:use-module ((guix licenses) #:prefix license:)
- #:use-module (guix packages)
- #:use-module (guix download)
- #:use-module (guix git-download)
- #:use-module (guix build-system gnu)
- #:use-module (gnu packages autotools)
- #:use-module (gnu packages avahi)
- #:use-module (gnu packages gnome) ; for libnotify
- #:use-module (gnu packages gtk)
- #:use-module (gnu packages pkg-config)
- #:use-module (gnu packages pulseaudio)
- #:use-module (gnu packages xorg))
-
-(define-public pasystray-git
- (let ((commit "70a365164c4de63087a690fb0c4b7cf99bd0bb65")
- (revision "0"))
- (package
- (name "pasystray-git")
- (version (git-version "0.7.1" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/christophgysin/pasystray.git")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1d8l0fzbw8bj9mx7r8mzzsiz99xccc363173mqrp4niwxq7q6giz"))))
- (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+))))