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

View file

@ -53,7 +53,7 @@ in python.pkgs.buildPythonPackage {
aiohttp-cors yarl aiohttp multidict
jinja2 psutil zipstream raven jsonschema
(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
doCheck = false;