mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pasystray: add libappindicator-gtk3 for appindicator support (#42184)
This commit is contained in:
parent
44b790fc6f
commit
c5cb7e550e
@ -1,5 +1,7 @@
|
|||||||
{stdenv, fetchFromGitHub, autoconf, automake, makeWrapper, pkgconfig
|
{ stdenv, fetchFromGitHub, autoconf, automake, makeWrapper, pkgconfig
|
||||||
, gnome3, avahi, gtk3, libnotify, libpulseaudio, xlibsWrapper}:
|
, gnome3, avahi, gtk3, libappindicator-gtk3, libnotify, libpulseaudio
|
||||||
|
, xlibsWrapper
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "pasystray-${version}";
|
name = "pasystray-${version}";
|
||||||
@ -13,9 +15,11 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ autoconf automake makeWrapper
|
buildInputs = [
|
||||||
gnome3.defaultIconTheme
|
autoconf automake makeWrapper
|
||||||
avahi gtk3 libnotify libpulseaudio xlibsWrapper ];
|
gnome3.defaultIconTheme
|
||||||
|
avahi gtk3 libappindicator-gtk3 libnotify libpulseaudio xlibsWrapper
|
||||||
|
];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
aclocal
|
aclocal
|
||||||
|
Loading…
Reference in New Issue
Block a user