mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
92 lines
1.9 KiB
Nix
92 lines
1.9 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3Packages
|
|
, dnsmasq
|
|
, gawk
|
|
, getent
|
|
, gobject-introspection
|
|
, gtk3
|
|
, kmod
|
|
, lxc
|
|
, iproute2
|
|
, iptables
|
|
, util-linux
|
|
, which
|
|
, wrapGAppsHook
|
|
, xclip
|
|
, runtimeShell
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "waydroid";
|
|
version = "1.3.4";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-0GBob9BUwiE5cFGdK8AdwsTjTOdc+AIWqUGN/gFfOqI=";
|
|
};
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
wrapGAppsHook
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
gbinder-python
|
|
pyclip
|
|
pygobject3
|
|
];
|
|
|
|
dontUseSetuptoolsBuild = true;
|
|
dontUsePipInstall = true;
|
|
dontUseSetuptoolsCheck = true;
|
|
dontWrapPythonPrograms = true;
|
|
dontWrapGApps = true;
|
|
|
|
installPhase = ''
|
|
make install PREFIX=$out USE_SYSTEMD=0
|
|
'';
|
|
|
|
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"
|
|
python3Packages.gbinder-python
|
|
python3Packages.pygobject3
|
|
python3Packages.pyclip
|
|
gawk
|
|
kmod
|
|
lxc
|
|
util-linux
|
|
which
|
|
xclip
|
|
]}"
|
|
|
|
substituteInPlace $out/lib/waydroid/tools/helpers/*.py \
|
|
--replace '"sh"' '"${runtimeShell}"'
|
|
|
|
substituteInPlace $out/share/applications/*.desktop \
|
|
--replace "/usr" "$out"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Waydroid is a container-based approach to boot a full Android system on a regular GNU/Linux system like Ubuntu";
|
|
homepage = "https://github.com/waydroid/waydroid";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ mcaju ];
|
|
};
|
|
}
|