mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #195234 from iAmMrinal0/update/waydroid
This commit is contained in:
commit
4df85acdbe
1 changed files with 5 additions and 3 deletions
|
@ -3,6 +3,7 @@
|
|||
, fetchFromGitHub
|
||||
, python3Packages
|
||||
, dnsmasq
|
||||
, gawk
|
||||
, getent
|
||||
, kmod
|
||||
, lxc
|
||||
|
@ -16,14 +17,14 @@
|
|||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "waydroid";
|
||||
version = "1.3.0";
|
||||
version = "1.3.3";
|
||||
format = "other";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-6osDGYyFuyPDeK1QFowh414j3laD8i4bqPgCeJmsszE=";
|
||||
sha256 = "sha256-av1kcOSViUV2jsFiTE21N6sAJIL6K+zKkpPHjx6iYVk=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
|
@ -38,7 +39,7 @@ python3Packages.buildPythonApplication rec {
|
|||
dontWrapPythonPrograms = true;
|
||||
|
||||
installPhase = ''
|
||||
make install DESTDIR=$out PREFIX= USE_SYSTEMD=0 USE_NFTABLES=1
|
||||
make install PREFIX=$out USE_SYSTEMD=0 USE_NFTABLES=1
|
||||
|
||||
wrapProgram $out/lib/waydroid/data/scripts/waydroid-net.sh \
|
||||
--prefix PATH ":" ${lib.makeBinPath [ dnsmasq getent iproute2 nftables ]}
|
||||
|
@ -48,6 +49,7 @@ python3Packages.buildPythonApplication rec {
|
|||
python3Packages.gbinder-python
|
||||
python3Packages.pygobject3
|
||||
python3Packages.pyclip
|
||||
gawk
|
||||
kmod
|
||||
lxc
|
||||
util-linux
|
||||
|
|
Loading…
Reference in a new issue