mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
xfce4-panel: fix the mixer applet (fixes #4563)
This commit is contained in:
parent
b47e5b6db3
commit
72ad248606
@ -1,5 +1,6 @@
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, libxfce4ui
|
||||
, libwnck, exo, garcon, xfconf, libstartup_notification }:
|
||||
, libwnck, exo, garcon, xfconf, libstartup_notification
|
||||
, makeWrapper, gst_plugins_base }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
p_name = "xfce4-panel";
|
||||
@ -18,9 +19,15 @@ stdenv.mkDerivation rec {
|
||||
buildInputs =
|
||||
[ pkgconfig intltool gtk libxfce4util exo libwnck
|
||||
garcon xfconf libstartup_notification
|
||||
makeWrapper gst_plugins_base
|
||||
];
|
||||
propagatedBuildInputs = [ libxfce4ui ];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram "$out/bin/xfce4-panel" \
|
||||
--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH"
|
||||
'';
|
||||
|
||||
preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
Loading…
Reference in New Issue
Block a user