mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
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:
parent
0ec12d53e6
commit
d9ba0ed9af
1 changed files with 6 additions and 3 deletions
|
@ -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}"
|
||||
|
|
Loading…
Reference in a new issue