qtox: add wrapper for set runtime qt5.svg plugin
This commit is contained in:
parent
2c933ad3db
commit
7f1efceff8
@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchgit, pkgconfig, libtoxcore-dev, qt5, openal, opencv,
|
||||
libsodium, libXScrnSaver, glib, gdk_pixbuf, gtk2, cairo,
|
||||
pango, atk, qrencode, ffmpeg, filter-audio }:
|
||||
pango, atk, qrencode, ffmpeg, filter-audio, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "qtox-dev-20150624";
|
||||
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
[
|
||||
libtoxcore-dev openal opencv libsodium filter-audio
|
||||
qt5.base qt5.tools libXScrnSaver glib gtk2 cairo
|
||||
pango atk qrencode ffmpeg qt5.translations
|
||||
pango atk qrencode ffmpeg qt5.translations makeWrapper
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
@ -37,13 +37,16 @@ stdenv.mkDerivation rec {
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp qtox $out/bin
|
||||
wrapProgram $out/bin/qtox \
|
||||
--prefix QT_PLUGIN_PATH : ${qt5.svg}/lib/qt5/plugins
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "QT Tox client";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ viric jgeerds ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user