mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pasystray: new package
This commit is contained in:
parent
a0696b4536
commit
ede000316a
23
pkgs/tools/audio/pasystray/default.nix
Normal file
23
pkgs/tools/audio/pasystray/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{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 = {
|
||||
description = "PulseAudio system tray";
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user