waydroid: 1.3.3 -> 1.3.4 (#206833)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Charles Johnson 2023-01-03 16:43:06 +00:00 committed by GitHub
parent d25b316f40
commit 2628f0003c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 7 deletions

View file

@ -56,12 +56,8 @@ in
wantedBy = [ "multi-user.target" ];
unitConfig = {
ConditionPathExists = "/var/lib/waydroid/lxc/waydroid";
};
serviceConfig = {
ExecStart = "${pkgs.waydroid}/bin/waydroid container start";
ExecStart = "${pkgs.waydroid}/bin/waydroid -w container start";
ExecStop = "${pkgs.waydroid}/bin/waydroid container stop";
ExecStopPost = "${pkgs.waydroid}/bin/waydroid session stop";
};

View file

@ -2,6 +2,7 @@
, lib
, fetchFromGitHub
, python3Packages
, bash
, dnsmasq
, gawk
, getent
@ -17,14 +18,14 @@
python3Packages.buildPythonApplication rec {
pname = "waydroid";
version = "1.3.3";
version = "1.3.4";
format = "other";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
sha256 = "sha256-av1kcOSViUV2jsFiTE21N6sAJIL6K+zKkpPHjx6iYVk=";
sha256 = "sha256-0GBob9BUwiE5cFGdK8AdwsTjTOdc+AIWqUGN/gFfOqI=";
};
propagatedBuildInputs = with python3Packages; [