gns3-gui: init at 2.0.3
This commit is contained in:
parent
74998657c7
commit
acb9ca3006
34
pkgs/applications/networking/gns3/gui.nix
Normal file
34
pkgs/applications/networking/gns3/gui.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ stdenv, python34Packages, fetchFromGitHub }:
|
||||||
|
|
||||||
|
# TODO: Python 3.6 was failing
|
||||||
|
python34Packages.buildPythonPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "gns3-gui";
|
||||||
|
version = "2.0.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "GNS3";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "10qp6430md8d0h2wamgfaq7pai59mqmcw6sw3i1gvb20m0avvsvb";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python34Packages; [
|
||||||
|
raven psutil jsonschema # tox for check
|
||||||
|
# Runtime dependencies
|
||||||
|
sip pyqt5
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = false; # Failing
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Graphical Network Simulator";
|
||||||
|
#longDescription = ''
|
||||||
|
# ...
|
||||||
|
#'';
|
||||||
|
homepage = "https://www.gns3.com/";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ primeos ];
|
||||||
|
};
|
||||||
|
}
|
@ -8038,6 +8038,8 @@ with pkgs;
|
|||||||
# A GMP fork
|
# A GMP fork
|
||||||
mpir = callPackage ../development/libraries/mpir {};
|
mpir = callPackage ../development/libraries/mpir {};
|
||||||
|
|
||||||
|
gns3-gui = callPackage ../applications/networking/gns3/gui.nix { };
|
||||||
|
|
||||||
gobjectIntrospection = callPackage ../development/libraries/gobject-introspection {
|
gobjectIntrospection = callPackage ../development/libraries/gobject-introspection {
|
||||||
nixStoreDir = config.nix.storeDir or builtins.storeDir;
|
nixStoreDir = config.nix.storeDir or builtins.storeDir;
|
||||||
inherit (darwin) cctools;
|
inherit (darwin) cctools;
|
||||||
|
@ -8229,11 +8229,11 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
raven = buildPythonPackage rec {
|
raven = buildPythonPackage rec {
|
||||||
name = "raven-3.4.1";
|
name = "raven-6.1.0";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "mirror://pypi/r/raven/${name}.tar.gz";
|
url = "mirror://pypi/r/raven/${name}.tar.gz";
|
||||||
sha256 = "c27e40ab3ccf37f30a9f77acb4917370d9341e25abda8e94b9bd48c7127f7d48";
|
sha256 = "1158fsjjl8byzl9nw52jhhdssjl6n7l0hjaxm5hdi69v2zxvzjh2";
|
||||||
};
|
};
|
||||||
|
|
||||||
# way too many dependencies to run tests
|
# way too many dependencies to run tests
|
||||||
@ -8241,7 +8241,7 @@ in {
|
|||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
maintainers = with maintainers; [ domenkozar ];
|
maintainers = with maintainers; [ primeos ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user