tomahawk: Fix resolver signature verification.

Requires the OpenSSL QCA plugin, otherwise QCA is unable to load the
Tomahawk public key.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2014-12-10 10:26:42 +01:00
parent 0ec12d53e6
commit d9ba0ed9af
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -1,6 +1,6 @@
{ stdenv, fetchurl, cmake, pkgconfig, attica, boost, gnutls, libechonest
, liblastfm, lucenepp, phonon, phonon_backend_vlc, qca2, qjson, qt4, qtkeychain
, quazip, sparsehash, taglib, websocketpp, makeWrapper
, liblastfm, lucenepp, phonon, phonon_backend_vlc, qca2, qca2_ossl, qjson, qt4
, qtkeychain, quazip, sparsehash, taglib, websocketpp, makeWrapper
, enableXMPP ? true, libjreen ? null
, enableKDE ? false, kdelibs ? null
@ -36,7 +36,10 @@ in stdenv.mkDerivation rec {
++ stdenv.lib.optional enableTelepathy telepathy_qt;
postInstall = let
pluginPath = "${phonon_backend_vlc}/lib/kde4/plugins";
pluginPath = stdenv.lib.concatStringsSep ":" [
"${phonon_backend_vlc}/lib/kde4/plugins"
"${qca2_ossl}/lib/qt4/plugins"
];
in ''
for i in "$out"/bin/*; do
wrapProgram "$i" --prefix QT_PLUGIN_PATH : "${pluginPath}"