2020-03-26 12:45:35 +00:00
|
|
|
{ stable, branch, version, sha256Hash, mkOverride, commonOverrides }:
|
2017-08-05 23:50:43 +00:00
|
|
|
|
2020-06-26 13:18:34 +00:00
|
|
|
{ lib, python3, fetchFromGitHub, wrapQtAppsHook }:
|
2017-09-22 19:18:37 +00:00
|
|
|
|
|
|
|
let
|
2020-03-26 12:45:35 +00:00
|
|
|
defaultOverrides = commonOverrides ++ [
|
2020-01-17 22:25:35 +00:00
|
|
|
];
|
|
|
|
|
2019-11-03 12:59:02 +00:00
|
|
|
python = python3.override {
|
2020-01-17 22:25:35 +00:00
|
|
|
packageOverrides = lib.foldr lib.composeExtensions (self: super: { }) defaultOverrides;
|
2019-11-03 12:59:02 +00:00
|
|
|
};
|
|
|
|
in python.pkgs.buildPythonPackage rec {
|
2017-08-05 23:50:43 +00:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "gns3-gui";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "GNS3";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2017-09-22 19:18:37 +00:00
|
|
|
sha256 = sha256Hash;
|
2017-08-05 23:50:43 +00:00
|
|
|
};
|
|
|
|
|
2020-06-26 13:18:34 +00:00
|
|
|
nativeBuildInputs = [ wrapQtAppsHook ];
|
2019-11-03 12:59:02 +00:00
|
|
|
propagatedBuildInputs = with python.pkgs; [
|
2020-06-07 18:51:16 +00:00
|
|
|
sentry-sdk psutil jsonschema # tox for check
|
2017-08-05 23:50:43 +00:00
|
|
|
# Runtime dependencies
|
2019-10-04 10:13:14 +00:00
|
|
|
sip (pyqt5.override { withWebSockets = true; }) distro setuptools
|
|
|
|
];
|
2017-08-05 23:50:43 +00:00
|
|
|
|
|
|
|
doCheck = false; # Failing
|
2020-06-26 13:18:34 +00:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
postFixup = ''
|
|
|
|
wrapQtApp "$out/bin/gns3"
|
|
|
|
'';
|
2017-08-05 23:50:43 +00:00
|
|
|
|
2020-06-26 13:18:34 +00:00
|
|
|
meta = with lib; {
|
2017-09-22 19:18:37 +00:00
|
|
|
description = "Graphical Network Simulator 3 GUI (${branch} release)";
|
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
|
|
|
};
|
|
|
|
}
|