nixpkgs/pkgs/applications/networking/gns3/gui.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
1.7 KiB
Nix
Raw Normal View History

2022-04-24 12:42:26 +00:00
{ stable
, branch
, version
, sha256Hash
, mkOverride
, commonOverrides
}:
2017-08-05 23:50:43 +00:00
2022-04-24 12:42:26 +00:00
{ lib
, python3
, fetchFromGitHub
, wrapQtAppsHook
, packageOverrides ? self: super: {}
2022-04-24 12:42:26 +00:00
}:
let
defaultOverrides = commonOverrides ++ [
];
2019-11-03 12:59:02 +00:00
python = python3.override {
packageOverrides = lib.foldr lib.composeExtensions (self: super: { }) ([ packageOverrides ] ++ defaultOverrides);
2019-11-03 12:59:02 +00:00
};
2022-10-08 13:17:04 +00:00
2019-11-03 12:59:02 +00:00
in python.pkgs.buildPythonPackage rec {
2017-08-05 23:50:43 +00:00
pname = "gns3-gui";
inherit version;
2017-08-05 23:50:43 +00:00
src = fetchFromGitHub {
owner = "GNS3";
repo = pname;
rev = "v${version}";
sha256 = sha256Hash;
2017-08-05 23:50:43 +00:00
};
2022-04-24 12:42:26 +00:00
nativeBuildInputs = [
wrapQtAppsHook
];
2019-11-03 12:59:02 +00:00
propagatedBuildInputs = with python.pkgs; [
2022-04-24 12:42:26 +00:00
distro
jsonschema
psutil
sentry-sdk
setuptools
sip_4 (pyqt5.override { withWebSockets = true; })
];
2017-08-05 23:50:43 +00:00
doCheck = false; # Failing
2022-04-24 12:42:26 +00:00
dontWrapQtApps = true;
2022-04-24 12:42:26 +00:00
postFixup = ''
wrapQtApp "$out/bin/gns3"
'';
2022-04-24 12:42:26 +00:00
2022-01-06 01:51:09 +00:00
postPatch = ''
substituteInPlace requirements.txt \
2022-04-24 12:42:26 +00:00
--replace "sentry-sdk==" "sentry-sdk>=" \
--replace "psutil==" "psutil>=" \
--replace "distro==" "distro>=" \
--replace "setuptools==" "setuptools>="
2022-01-06 01:51:09 +00:00
'';
2017-08-05 23:50:43 +00:00
meta = with lib; {
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).
'';
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; [ ];
2017-08-05 23:50:43 +00:00
};
}