From 0eaec4dee272d9dc67cee9599a41fcac1039845a Mon Sep 17 00:00:00 2001 From: Atemu Date: Tue, 16 Jun 2020 19:25:07 +0200 Subject: [PATCH] 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). --- pkgs/applications/networking/gns3/gui.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/gns3/gui.nix b/pkgs/applications/networking/gns3/gui.nix index 7a0861ee3c19..bc5f78d104f3 100644 --- a/pkgs/applications/networking/gns3/gui.nix +++ b/pkgs/applications/networking/gns3/gui.nix @@ -1,9 +1,8 @@ { stable, branch, version, sha256Hash, mkOverride, commonOverrides }: -{ lib, stdenv, python3, fetchFromGitHub }: +{ lib, stdenv, python3, pkgs, fetchFromGitHub }: let - # TODO: This package requires qt5Full to launch defaultOverrides = commonOverrides ++ [ (mkOverride "jsonschema" "3.2.0" "0ykr61yiiizgvm3bzipa3l73rvj49wmrybbfwhvpgk3pscl5pa68") @@ -27,6 +26,7 @@ in python.pkgs.buildPythonPackage rec { raven psutil jsonschema # tox for check # Runtime dependencies sip (pyqt5.override { withWebSockets = true; }) distro setuptools + pkgs.qt5Full ]; doCheck = false; # Failing