gns3Packages.{server,gui}Preview: 2.2.0a1 -> 2.2.0a2

This commit is contained in:
Michael Weiss 2019-03-14 12:53:19 +01:00
parent e66a47263f
commit 0e0a00bb6f
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
let let
stableVersion = "2.1.14"; stableVersion = "2.1.14";
previewVersion = "2.2.0a1"; previewVersion = "2.2.0a2";
addVersion = args: addVersion = args:
let version = if args.stable then stableVersion else previewVersion; let version = if args.stable then stableVersion else previewVersion;
branch = if args.stable then "stable" else "preview"; branch = if args.stable then "stable" else "preview";
@ -18,7 +18,7 @@ in {
}; };
guiPreview = mkGui { guiPreview = mkGui {
stable = false; stable = false;
sha256Hash = "16jjgfbdi7b3349wrqalf40qcaqzw3d4vdjbwcy8dbqblg48hn5w"; sha256Hash = "1lvdff4yfavfkjmdbhxqfxdd5nq77c2vyy2wnsdliwnmdh3fhm28";
}; };
serverStable = mkServer { serverStable = mkServer {
@ -27,6 +27,6 @@ in {
}; };
serverPreview = mkServer { serverPreview = mkServer {
stable = false; stable = false;
sha256Hash = "0bcsjljy947grfn3y9xyi3dbzdw5wkljq1nr66cqfkidx9f4fzni"; sha256Hash = "033bi1bcw5ss6g380qnam1qqyi4bz1cykbb3lparb8hryikicdb9";
}; };
} }

View File

@ -53,7 +53,7 @@ in python.pkgs.buildPythonPackage {
aiohttp-cors yarl aiohttp multidict aiohttp-cors yarl aiohttp multidict
jinja2 psutil zipstream raven jsonschema jinja2 psutil zipstream raven jsonschema
(python.pkgs.callPackage ../../../development/python-modules/prompt_toolkit/1.nix {}) (python.pkgs.callPackage ../../../development/python-modules/prompt_toolkit/1.nix {})
] ++ stdenv.lib.optional (!stable) python.pkgs.distro; ] ++ stdenv.lib.optional (!stable) [ distro async_generator aiofiles ];
# Requires network access # Requires network access
doCheck = false; doCheck = false;