mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +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
|
{ 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 {
|
stdenv.mkDerivation rec {
|
||||||
p_name = "xfce4-panel";
|
p_name = "xfce4-panel";
|
||||||
@ -18,9 +19,15 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs =
|
buildInputs =
|
||||||
[ pkgconfig intltool gtk libxfce4util exo libwnck
|
[ pkgconfig intltool gtk libxfce4util exo libwnck
|
||||||
garcon xfconf libstartup_notification
|
garcon xfconf libstartup_notification
|
||||||
|
makeWrapper gst_plugins_base
|
||||||
];
|
];
|
||||||
propagatedBuildInputs = [ libxfce4ui ];
|
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";
|
preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user