pidgin: fix gstreamer plugin path

Closes #13722, fixes #13719 and maybe #10556.
This commit is contained in:
Christoph Hrdinka 2016-03-07 00:08:46 +01:00 committed by Vladimír Čunát
parent c686f03305
commit d3e3b135ea

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, gtk, gtkspell, aspell
, gstreamer, gst_plugins_base, startupnotification, gettext
{ stdenv, fetchurl, makeWrapper, pkgconfig, gtk, gtkspell, aspell
, gstreamer, gst_plugins_base, gst_plugins_good, startupnotification, gettext
, perl, perlXMLParser, libxml2, nss, nspr, farsight2
, libXScrnSaver, ncurses, avahi, dbus, dbus_glib, intltool, libidn
, lib, python, libICE, libXext, libSM
@ -22,9 +22,11 @@ stdenv.mkDerivation rec {
inherit nss ncurses;
nativeBuildInputs = [ makeWrapper ];
buildInputs = [
gtkspell aspell
gstreamer gst_plugins_base startupnotification
gstreamer gst_plugins_base gst_plugins_good startupnotification
libxml2 nss nspr farsight2
libXScrnSaver ncurses python
avahi dbus dbus_glib intltool libidn
@ -54,6 +56,11 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
postInstall = ''
wrapProgram $out/bin/pidgin \
--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH"
'';
meta = with stdenv.lib; {
description = "Multi-protocol instant messaging client";
homepage = http://pidgin.im;