2023-08-16 16:29:54 +00:00
|
|
|
{ channel
|
2022-04-24 12:42:26 +00:00
|
|
|
, version
|
2023-08-16 16:29:54 +00:00
|
|
|
, hash
|
2022-04-24 12:42:26 +00:00
|
|
|
}:
|
2017-08-05 23:50:43 +00:00
|
|
|
|
2022-04-24 12:42:26 +00:00
|
|
|
{ lib
|
|
|
|
, python3
|
|
|
|
, fetchFromGitHub
|
2023-09-20 20:37:59 +00:00
|
|
|
, qt5
|
2022-04-24 12:42:26 +00:00
|
|
|
, wrapQtAppsHook
|
|
|
|
}:
|
2017-09-22 19:18:37 +00:00
|
|
|
|
2023-08-16 16:29:54 +00:00
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2017-08-05 23:50:43 +00:00
|
|
|
pname = "gns3-gui";
|
2021-07-12 10:51:53 +00:00
|
|
|
inherit version;
|
2017-08-05 23:50:43 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2023-08-16 16:29:54 +00:00
|
|
|
inherit hash;
|
2017-08-05 23:50:43 +00:00
|
|
|
owner = "GNS3";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
};
|
|
|
|
|
2023-08-16 16:29:54 +00:00
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
2022-04-24 12:42:26 +00:00
|
|
|
wrapQtAppsHook
|
|
|
|
];
|
|
|
|
|
2022-11-10 22:42:31 +00:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
2022-04-24 12:42:26 +00:00
|
|
|
distro
|
|
|
|
jsonschema
|
|
|
|
psutil
|
|
|
|
sentry-sdk
|
|
|
|
setuptools
|
|
|
|
sip_4 (pyqt5.override { withWebSockets = true; })
|
2023-08-16 16:29:54 +00:00
|
|
|
truststore
|
2023-09-20 20:36:57 +00:00
|
|
|
] ++ lib.optionals (pythonOlder "3.9") [
|
|
|
|
importlib-resources
|
2019-10-04 10:13:14 +00:00
|
|
|
];
|
2017-08-05 23:50:43 +00:00
|
|
|
|
2020-06-26 13:18:34 +00:00
|
|
|
dontWrapQtApps = true;
|
2022-04-24 12:42:26 +00:00
|
|
|
|
2023-08-16 16:29:54 +00:00
|
|
|
preFixup = ''
|
|
|
|
wrapQtApp "$out/bin/gns3"
|
2022-01-06 01:51:09 +00:00
|
|
|
'';
|
2017-08-05 23:50:43 +00:00
|
|
|
|
2023-09-20 20:37:59 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
checkInputs = with python3.pkgs; [
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
export QT_PLUGIN_PATH="${qt5.qtbase.bin}/${qt5.qtbase.qtPluginPrefix}"
|
|
|
|
export QT_QPA_PLATFORM_PLUGIN_PATH="${qt5.qtbase.bin}/lib/qt-${qt5.qtbase.version}/plugins";
|
|
|
|
export QT_QPA_PLATFORM=offscreen
|
|
|
|
'';
|
|
|
|
|
2020-06-26 13:18:34 +00:00
|
|
|
meta = with lib; {
|
2023-08-16 16:29:54 +00:00
|
|
|
description = "Graphical Network Simulator 3 GUI (${channel} release)";
|
2017-09-22 19:18:37 +00:00
|
|
|
longDescription = ''
|
|
|
|
Graphical user interface for controlling the GNS3 network simulator. This
|
|
|
|
requires access to a local or remote GNS3 server (it's recommended to
|
|
|
|
download the official GNS3 VM).
|
|
|
|
'';
|
2020-03-26 12:45:35 +00:00
|
|
|
homepage = "https://www.gns3.com/";
|
|
|
|
changelog = "https://github.com/GNS3/gns3-gui/releases/tag/v${version}";
|
2017-08-05 23:50:43 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
2022-10-08 13:16:36 +00:00
|
|
|
maintainers = with maintainers; [ anthonyroussel ];
|
2023-05-28 06:31:27 +00:00
|
|
|
mainProgram = "gns3";
|
2017-08-05 23:50:43 +00:00
|
|
|
};
|
|
|
|
}
|