summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMihai-Drosi Câju <cajum.bugs@yandex.com>2023-09-24 16:09:00 +0300
committerEmery Hemingway <ehmry@posteo.net>2023-11-26 17:13:15 +0200
commit1afdfc52597d5f1f7e167dab27d02912fab27e1e (patch)
treea07bbc1f4aa72233a62eef5d621aa3364ce08253
parentac6c69dc733fef57030e4067f139fa4f0531685f (diff)
waydroid: remove `with lib;`
-rw-r--r--pkgs/os-specific/linux/waydroid/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/waydroid/default.nix b/pkgs/os-specific/linux/waydroid/default.nix
index 2cf6e0c47e48..e8e0727b8dbf 100644
--- a/pkgs/os-specific/linux/waydroid/default.nix
+++ b/pkgs/os-specific/linux/waydroid/default.nix
@@ -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 ];
};
}