summary refs log tree commit diff
path: root/pkgs/applications/networking/gns3
diff options
context:
space:
mode:
authorAtemu <atemu.main@gmail.com>2020-06-16 19:25:07 +0200
committerMichael Weiss <dev.primeos@gmail.com>2020-06-24 19:30:17 +0200
commit0eaec4dee272d9dc67cee9599a41fcac1039845a (patch)
treeeb7fb366ac1f957fc184c6c22871014cee4183f1 /pkgs/applications/networking/gns3
parent0c47a81419200f94ef03f1a71fd41af925317aea (diff)
downloadnixpkgs-0eaec4dee272d9dc67cee9599a41fcac1039845a.tar
nixpkgs-0eaec4dee272d9dc67cee9599a41fcac1039845a.tar.gz
nixpkgs-0eaec4dee272d9dc67cee9599a41fcac1039845a.tar.bz2
nixpkgs-0eaec4dee272d9dc67cee9599a41fcac1039845a.tar.lz
nixpkgs-0eaec4dee272d9dc67cee9599a41fcac1039845a.tar.xz
nixpkgs-0eaec4dee272d9dc67cee9599a41fcac1039845a.tar.zst
nixpkgs-0eaec4dee272d9dc67cee9599a41fcac1039845a.zip
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).
Diffstat (limited to 'pkgs/applications/networking/gns3')
-rw-r--r--pkgs/applications/networking/gns3/gui.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/gns3/gui.nix b/pkgs/applications/networking/gns3/gui.nix
index 7a0861ee3c1..bc5f78d104f 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