about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-10-09 11:37:36 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-10-09 11:37:36 +0200
commit90d4e28c80620dafe29c9b72c42e0e47bcf4405e (patch)
tree457f01b14ba7eccfd1fdec67665101f6d03fbd1c /pkgs
parent46b657bbf5f579716e192c256dd19eb9f1992ffe (diff)
pkgs/tomahawk: Fix build against Qt 5.6
This actually fixes the build of libjreen against Qt 5.6, the rest of
the dependencies work fine with Qt 5.6.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/default.nix1
-rw-r--r--pkgs/tomahawk/default.nix8
2 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix
index 91894423..0b2c9b13 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -32,7 +32,6 @@ let
     sidplayfp = callPackage ./sidplayfp { };
     tkabber_urgent_plugin = callPackage ./tkabber-urgent-plugin { };
     tomahawk = callPackage ./tomahawk {
-      qt5 = pkgs.qt55;
       boost = pkgs.boost155;
     };
     twitchstream = callPackage ./twitchstream { };
diff --git a/pkgs/tomahawk/default.nix b/pkgs/tomahawk/default.nix
index 8b39fd77..26f742a1 100644
--- a/pkgs/tomahawk/default.nix
+++ b/pkgs/tomahawk/default.nix
@@ -45,6 +45,12 @@ let
     };
   };
 
+  jreenPatched = overrideDerivation (useQT5 libjreen) (drv: {
+    postPatch = (drv.postPatch or "") + ''
+      sed -i -e 's/QMetaTypeId/QMap/g' src/stanzaextension.h
+    '';
+  });
+
 in stdenv.mkDerivation rec {
   name = "tomahawk-${version}";
   version = "0.9.0-git";
@@ -67,7 +73,7 @@ in stdenv.mkDerivation rec {
     attica ecm qca-qt5 qtbase qtkeychain qtsvg qttools qtwebkit qtx11extras
   ]) ++ map useQT5 [ liblastfm qt5.quazip ] ++ [
     boost gnutls lucenepp sparsehash taglib vlc websocketpp libechonestQT5
-  ] ++ stdenv.lib.optional enableXMPP      (useQT5 libjreen)
+  ] ++ stdenv.lib.optional enableXMPP      jreenPatched
     ++ stdenv.lib.optional enableKDE       (useQT5 kdelibs)
     ++ stdenv.lib.optional enableTelepathy (useQT5 telepathy_qt);