xfce4-panel: synchronize gst plugins with xfce4-mixer

This commit is contained in:
Vladimír Čunát 2014-10-23 14:08:33 +02:00
parent 72ad248606
commit c9de1ea49e
2 changed files with 6 additions and 4 deletions

View File

@ -9,6 +9,7 @@ let
gst_plugins_minimal = gst_plugins_base.override {
minimalDeps = true;
};
gst_plugins = [ gst_plugins_minimal ];
in
@ -34,6 +35,8 @@ stdenv.mkDerivation rec {
--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH"
'';
passthru = { inherit gst_plugins; };
meta = {
homepage = http://www.xfce.org/projects/xfce4-mixer; # referenced but inactive
description = "A volume control application for the Xfce desktop environment";

View File

@ -1,6 +1,6 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, libxfce4ui
, libwnck, exo, garcon, xfconf, libstartup_notification
, makeWrapper, gst_plugins_base }:
, makeWrapper, xfce4mixer }:
stdenv.mkDerivation rec {
p_name = "xfce4-panel";
@ -18,9 +18,8 @@ stdenv.mkDerivation rec {
buildInputs =
[ pkgconfig intltool gtk libxfce4util exo libwnck
garcon xfconf libstartup_notification
makeWrapper gst_plugins_base
];
garcon xfconf libstartup_notification makeWrapper
] ++ xfce4mixer.gst_plugins;
propagatedBuildInputs = [ libxfce4ui ];
postInstall = ''