mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 18:44:07 +00:00
Merge pull request #5249 from purefn/pasystray-icon
wrap pasystray to provide XDG_DATA_DIRS so tray icon displays correctly
This commit is contained in:
commit
f89195de81
@ -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 {
|
||||
name = "pasystray-0.4.0";
|
||||
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
|
||||
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 = ''
|
||||
aclocal
|
||||
@ -17,6 +17,11 @@ stdenv.mkDerivation rec {
|
||||
automake --add-missing
|
||||
'';
|
||||
|
||||
preFixup = ''
|
||||
wrapProgram "$out/bin/pasystray" \
|
||||
--prefix XDG_DATA_DIRS : "${gnome_icon_theme}/share:$GSETTINGS_SCHEMAS_PATH"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "PulseAudio system tray";
|
||||
homepage = "https://github.com/christophgysin/pasystray";
|
||||
|
Loading…
Reference in New Issue
Block a user