Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/maintainers.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
ellis = "Ellis Whitehead <nixos@ellisw.net>";
emery = "Emery Hemingway <emery@vfemail.net>";
ertes = "Ertugrul Söylemez <ertesx@gmx.de>";
exlevan = "Alexey Levan <exlevan@gmail.com>";
falsifian = "James Cook <james.cook@utoronto.ca>";
flosse = "Markus Kohlhase <mail@markus-kohlhase.de>";
fpletz = "Franz Pletz <fpletz@fnordicwalking.de>";
Expand Down
31 changes: 31 additions & 0 deletions pkgs/tools/audio/pasystray/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{stdenv, fetchurl, unzip, autoconf, automake, pkgconfig, gnome_icon_theme, avahi, gtk3, libnotify, pulseaudio, x11}:

stdenv.mkDerivation rec {
name = "pasystray-0.4.0";

src = fetchurl {
url = "https://github.com/christophgysin/pasystray/archive/${name}.zip";
sha256 = "1gpb7yqcxqglv50iqbkg2lg3r0z07jm4ir2zqmvns6sgddks590w";
};

buildInputs = [ unzip autoconf automake pkgconfig gnome_icon_theme avahi gtk3 libnotify pulseaudio x11 ];

preConfigure = ''
aclocal
autoconf
autoheader
automake --add-missing
'';

meta = with stdenv.lib; {
description = "PulseAudio system tray";

home = "https://github.com/christophgysin/pasystray";

license = licenses.lgpl21Plus;

maintainers = [ maintainers.exlevan ];

platfoms = platforms.linux;
};
}
4 changes: 4 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1827,6 +1827,10 @@ let

pa_applet = callPackage ../tools/audio/pa-applet { };

pasystray = callPackage ../tools/audio/pasystray {
inherit (gnome3) gnome_icon_theme;
};

pnmixer = callPackage ../tools/audio/pnmixer { };

nifskope = callPackage ../tools/graphics/nifskope { };
Expand Down