Commit 1afdfc52 authored by Mihai-Drosi Câju's avatar Mihai-Drosi Câju Committed by Emery Hemingway
Browse files

waydroid: remove `with lib;`

parent ac6c69dc
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -78,11 +78,11 @@ python3Packages.buildPythonApplication rec {
      --replace '"sh"' '"${runtimeShell}"'
  '';

  meta = with lib; {
  meta = {
    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 ];
    license = lib.licenses.gpl3;
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ mcaju ];
  };
}