gns3-gui: Add the missing qt5Full runtime dependency
qt5Full may not be installed on users' systems and the gns3-gui depends on it explicitly. Note: This also fixes e.g. "nix-shell -p gns3-gui --pure" (at the cost of an increased closure size).
This commit is contained in:
parent
0c47a81419
commit
0eaec4dee2
@ -1,9 +1,8 @@
|
|||||||
{ stable, branch, version, sha256Hash, mkOverride, commonOverrides }:
|
{ stable, branch, version, sha256Hash, mkOverride, commonOverrides }:
|
||||||
|
|
||||||
{ lib, stdenv, python3, fetchFromGitHub }:
|
{ lib, stdenv, python3, pkgs, fetchFromGitHub }:
|
||||||
|
|
||||||
let
|
let
|
||||||
# TODO: This package requires qt5Full to launch
|
|
||||||
defaultOverrides = commonOverrides ++ [
|
defaultOverrides = commonOverrides ++ [
|
||||||
(mkOverride "jsonschema" "3.2.0"
|
(mkOverride "jsonschema" "3.2.0"
|
||||||
"0ykr61yiiizgvm3bzipa3l73rvj49wmrybbfwhvpgk3pscl5pa68")
|
"0ykr61yiiizgvm3bzipa3l73rvj49wmrybbfwhvpgk3pscl5pa68")
|
||||||
@ -27,6 +26,7 @@ in python.pkgs.buildPythonPackage rec {
|
|||||||
raven psutil jsonschema # tox for check
|
raven psutil jsonschema # tox for check
|
||||||
# Runtime dependencies
|
# Runtime dependencies
|
||||||
sip (pyqt5.override { withWebSockets = true; }) distro setuptools
|
sip (pyqt5.override { withWebSockets = true; }) distro setuptools
|
||||||
|
pkgs.qt5Full
|
||||||
];
|
];
|
||||||
|
|
||||||
doCheck = false; # Failing
|
doCheck = false; # Failing
|
||||||
|
Loading…
x
Reference in New Issue
Block a user