about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/telegram/cutegram
diff options
context:
space:
mode:
authorGabriel Ebner <gebner@gebner.org>2017-05-11 14:40:37 +0200
committerGabriel Ebner <gebner@gebner.org>2017-05-11 14:41:36 +0200
commit93f47559b291d932335a4c36a2bf469b0e252101 (patch)
tree0ae2c4fc951f14f5cbe55abc4e58719e239e37fc /pkgs/applications/networking/instant-messengers/telegram/cutegram
parente281e59711203ded4d7ed7712b82350e4d68926b (diff)
downloadnixlib-93f47559b291d932335a4c36a2bf469b0e252101.tar
nixlib-93f47559b291d932335a4c36a2bf469b0e252101.tar.gz
nixlib-93f47559b291d932335a4c36a2bf469b0e252101.tar.bz2
nixlib-93f47559b291d932335a4c36a2bf469b0e252101.tar.lz
nixlib-93f47559b291d932335a4c36a2bf469b0e252101.tar.xz
nixlib-93f47559b291d932335a4c36a2bf469b0e252101.tar.zst
nixlib-93f47559b291d932335a4c36a2bf469b0e252101.zip
cutegram: add missing qtwebkit dependency
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/telegram/cutegram')
-rw-r--r--pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix
index d05ff845ebb0..a20119e0d731 100644
--- a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchgit
 , qtbase, qtmultimedia, qtquick1, qtquickcontrols
-, qtimageformats, qtgraphicaleffects
+, qtimageformats, qtgraphicaleffects, qtwebkit
 , telegram-qml, libqtelegram-aseman-edition
 , gst_all_1
 , makeQtWrapper, qmakeHook }:
@@ -16,8 +16,8 @@ stdenv.mkDerivation rec {
 
   buildInputs =
   [ qtbase qtmultimedia qtquick1 qtquickcontrols
-    qtimageformats qtgraphicaleffects
-    telegram-qml libqtelegram-aseman-edition 
+    qtimageformats qtgraphicaleffects qtwebkit
+    telegram-qml libqtelegram-aseman-edition
   ] ++ (with gst_all_1; [ gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly ]);
 
   nativeBuildInputs = [ makeQtWrapper qmakeHook ];
@@ -36,7 +36,6 @@ stdenv.mkDerivation rec {
     license = licenses.gpl3;
     maintainers = with maintainers; [ profpatsch AndersonTorres ];
     platforms = platforms.linux;
-    broken = true;
   };
 }
 #TODO: appindicator, for system tray plugin (by @profpatsch)