pidgin: fix gstreamer plugin path
Closes #13722, fixes #13719 and maybe #10556.
This commit is contained in:
parent
c686f03305
commit
d3e3b135ea
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, gtk, gtkspell, aspell
|
{ stdenv, fetchurl, makeWrapper, pkgconfig, gtk, gtkspell, aspell
|
||||||
, gstreamer, gst_plugins_base, startupnotification, gettext
|
, gstreamer, gst_plugins_base, gst_plugins_good, startupnotification, gettext
|
||||||
, perl, perlXMLParser, libxml2, nss, nspr, farsight2
|
, perl, perlXMLParser, libxml2, nss, nspr, farsight2
|
||||||
, libXScrnSaver, ncurses, avahi, dbus, dbus_glib, intltool, libidn
|
, libXScrnSaver, ncurses, avahi, dbus, dbus_glib, intltool, libidn
|
||||||
, lib, python, libICE, libXext, libSM
|
, lib, python, libICE, libXext, libSM
|
||||||
@ -22,9 +22,11 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
inherit nss ncurses;
|
inherit nss ncurses;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gtkspell aspell
|
gtkspell aspell
|
||||||
gstreamer gst_plugins_base startupnotification
|
gstreamer gst_plugins_base gst_plugins_good startupnotification
|
||||||
libxml2 nss nspr farsight2
|
libxml2 nss nspr farsight2
|
||||||
libXScrnSaver ncurses python
|
libXScrnSaver ncurses python
|
||||||
avahi dbus dbus_glib intltool libidn
|
avahi dbus dbus_glib intltool libidn
|
||||||
@ -54,6 +56,11 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapProgram $out/bin/pidgin \
|
||||||
|
--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Multi-protocol instant messaging client";
|
description = "Multi-protocol instant messaging client";
|
||||||
homepage = http://pidgin.im;
|
homepage = http://pidgin.im;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user