wrap pasystray to provide XDG_DATA_DIRS so tray icon displays correctly
This commit is contained in:
parent
df371e10a8
commit
b00f6cde88
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchurl, unzip, autoconf, automake, pkgconfig, gnome_icon_theme, avahi, gtk3, libnotify, pulseaudio, x11}:
|
{stdenv, fetchurl, unzip, autoconf, automake, makeWrapper, pkgconfig, gnome_icon_theme, avahi, gtk3, libnotify, pulseaudio, x11}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "pasystray-0.4.0";
|
name = "pasystray-0.4.0";
|
||||||
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1gpb7yqcxqglv50iqbkg2lg3r0z07jm4ir2zqmvns6sgddks590w";
|
sha256 = "1gpb7yqcxqglv50iqbkg2lg3r0z07jm4ir2zqmvns6sgddks590w";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ unzip autoconf automake pkgconfig gnome_icon_theme avahi gtk3 libnotify pulseaudio x11 ];
|
buildInputs = [ unzip autoconf automake makeWrapper pkgconfig gnome_icon_theme avahi gtk3 libnotify pulseaudio x11 ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
aclocal
|
aclocal
|
||||||
@ -17,6 +17,11 @@ stdenv.mkDerivation rec {
|
|||||||
automake --add-missing
|
automake --add-missing
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
preFixup = ''
|
||||||
|
wrapProgram "$out/bin/pasystray" \
|
||||||
|
--prefix XDG_DATA_DIRS : "${gnome_icon_theme}/share:$GSETTINGS_SCHEMAS_PATH"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "PulseAudio system tray";
|
description = "PulseAudio system tray";
|
||||||
homepage = "https://github.com/christophgysin/pasystray";
|
homepage = "https://github.com/christophgysin/pasystray";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user