Skip to content

Commit

Permalink
git-cola: doesn't need QtWebKit
Browse files Browse the repository at this point in the history
QtWebKit is only used if QtWebEngine is not available
  • Loading branch information
veprbl committed Dec 30, 2018
1 parent 16f11df commit eecc336
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{ stdenv, fetchFromGitHub, pythonPackages, gettext, git }:

let
inherit (pythonPackages) buildPythonApplication pyqt5_with_qtwebkit sip pyinotify;
inherit (pythonPackages) buildPythonApplication pyqt5 sip pyinotify;

in buildPythonApplication rec {
name = "git-cola-${version}";
version = "3.2";
Expand All @@ -14,7 +15,7 @@ in buildPythonApplication rec {
};

buildInputs = [ git gettext ];
propagatedBuildInputs = [ pyqt5_with_qtwebkit sip pyinotify ];
propagatedBuildInputs = [ pyqt5 sip pyinotify ];

doCheck = false;

Expand Down

0 comments on commit eecc336

Please sign in to comment.