diff options
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/shell.nix b/shell.nix index fd110442cd6..2576e0e454f 100644 --- a/shell.nix +++ b/shell.nix @@ -84,13 +84,7 @@ stdenv.mkDerivation (androidEnvironment // { # Build utilities cmake dbus gcc git pkg-config which llvm perl yasm m4 - - # Ensure the Python version is same as the one in `.python-version` file so - # that `uv` will just symlink to the one in nix store. Otherwise `uv` will - # download a pre-built binary that won't work on nix. - # FIXME: dbus python module needs to be installed into the virtual environment. - python312 - uv + (python3.withPackages (ps: with ps; [virtualenv pip dbus])) # This pins gnumake to 4.3 since 4.4 breaks jobserver # functionality in mozjs and causes builds to be extremely |