mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
git-cola: doesn't need QtWebKit
QtWebKit is only used if QtWebEngine is not available
This commit is contained in:
parent
16f11dff3f
commit
eecc33608f
@ -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";
|
||||
@ -14,7 +15,7 @@ in buildPythonApplication rec {
|
||||
};
|
||||
|
||||
buildInputs = [ git gettext ];
|
||||
propagatedBuildInputs = [ pyqt5_with_qtwebkit sip pyinotify ];
|
||||
propagatedBuildInputs = [ pyqt5 sip pyinotify ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user