From 820b75ff7b7d7150fa2572f1a522ed5e680e850a Mon Sep 17 00:00:00 2001 From: SteavenGamerYT <62666559+SteavenGamerYT@users.noreply.github.com> Date: Tue, 15 Jul 2025 16:32:48 +0300 Subject: [PATCH] Update to work with nixos 25.05 this what worked with me --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 9ab2954..7fbbb0b 100644 --- a/default.nix +++ b/default.nix @@ -1,10 +1,10 @@ -with (import {}); +{ lib, stdenv, python3 }: stdenv.mkDerivation { name = "waydroid_script"; buildInputs = [ - (python3.withPackages(ps: with ps; [ tqdm requests inquirerpy ])) + (python3.withPackages (ps: with ps; [ tqdm requests inquirerpy ])) ]; src = ./.;