mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 02:03:01 +00:00
107 lines
2.1 KiB
Nix
107 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
python3Packages,
|
|
dnsmasq,
|
|
gawk,
|
|
getent,
|
|
gobject-introspection,
|
|
gtk3,
|
|
kmod,
|
|
lxc,
|
|
iproute2,
|
|
iptables,
|
|
util-linux,
|
|
wrapGAppsHook3,
|
|
wl-clipboard,
|
|
runtimeShell,
|
|
nix-update-script,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "waydroid";
|
|
version = "1.4.3";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "waydroid";
|
|
repo = "waydroid";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-LejyuGYgW46++95XROuWc13Q+w0l+AzGAl9ekfmAIEk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
dbus-python
|
|
gbinder-python
|
|
pyclip
|
|
pygobject3
|
|
];
|
|
|
|
dontUseSetuptoolsBuild = true;
|
|
dontUsePipInstall = true;
|
|
dontUseSetuptoolsCheck = true;
|
|
dontWrapPythonPrograms = true;
|
|
dontWrapGApps = true;
|
|
|
|
installFlags = [
|
|
"PREFIX=$(out)"
|
|
"USE_SYSTEMD=0"
|
|
"SYSCONFDIR=$(out)/etc"
|
|
];
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
|
|
patchShebangs --host $out/lib/waydroid/data/scripts
|
|
wrapProgram $out/lib/waydroid/data/scripts/waydroid-net.sh \
|
|
--prefix PATH ":" ${
|
|
lib.makeBinPath [
|
|
dnsmasq
|
|
getent
|
|
iproute2
|
|
iptables
|
|
]
|
|
}
|
|
|
|
wrapPythonProgramsIn $out/lib/waydroid/ "${
|
|
lib.concatStringsSep " " (
|
|
[
|
|
"$out"
|
|
]
|
|
++ propagatedBuildInputs
|
|
++ [
|
|
gawk
|
|
kmod
|
|
lxc
|
|
util-linux
|
|
wl-clipboard
|
|
]
|
|
)
|
|
}"
|
|
|
|
substituteInPlace $out/lib/waydroid/tools/helpers/*.py \
|
|
--replace '"sh"' '"${runtimeShell}"'
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Container-based approach to boot a full Android system on a regular GNU/Linux system";
|
|
mainProgram = "waydroid";
|
|
homepage = "https://github.com/waydroid/waydroid";
|
|
license = lib.licenses.gpl3Only;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ ];
|
|
};
|
|
}
|