gns3-server: init at 2.0.3
This commit is contained in:
parent
2bc92695bf
commit
953b232385
37
pkgs/applications/networking/gns3/server.nix
Normal file
37
pkgs/applications/networking/gns3/server.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ stdenv, python34Packages, fetchFromGitHub }:
|
||||||
|
|
||||||
|
python34Packages.buildPythonPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "gns3-server";
|
||||||
|
version = "2.0.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "GNS3";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1c7mzj1r2zh90a7vs3s17jakfp9s43b8nnj29rpamqxvl3qhbdy7";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python34Packages; [
|
||||||
|
aiohttp jinja2 psutil zipstream aiohttp-cors raven jsonschema
|
||||||
|
];
|
||||||
|
|
||||||
|
# Requires network access
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
rm $out/bin/gns3loopback # For windows only
|
||||||
|
'';
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Graphical Network Simulator 3 server";
|
||||||
|
longDescription = ''
|
||||||
|
The GNS3 server manages emulators such as Dynamips, VirtualBox or
|
||||||
|
Qemu/KVM. Clients like the GNS3 GUI control the server using a HTTP REST
|
||||||
|
API.
|
||||||
|
'';
|
||||||
|
homepage = "https://www.gns3.com/";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ primeos ];
|
||||||
|
};
|
||||||
|
}
|
@ -8039,6 +8039,7 @@ with pkgs;
|
|||||||
mpir = callPackage ../development/libraries/mpir {};
|
mpir = callPackage ../development/libraries/mpir {};
|
||||||
|
|
||||||
gns3-gui = callPackage ../applications/networking/gns3/gui.nix { };
|
gns3-gui = callPackage ../applications/networking/gns3/gui.nix { };
|
||||||
|
gns3-server = callPackage ../applications/networking/gns3/server.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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user