nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at litex 15 lines 640 B view raw view rendered
1# How to update 2 31. `./fetchrepo.sh` 42. `./mkrepo.sh` 53. Check the `repo.json` diff for new stable versions of `tools`, `platform-tools`, `build-tools`, `emulator` and/or `ndk` 64. Update the relevant argument defaults in `compose-android-packages.nix` 7 8# How to run tests 9You may need to make yourself familiar with [tests](https://nixos.org/manual/nixpkgs/stable/#var-meta-tests), and [Writing larger package tests](https://nixos.org/manual/nixpkgs/stable/#ssec-package-tests-writing) in the Manual, then run tests locally with: 10 11```shell 12$ export NIXPKGS_ALLOW_UNFREE=1 13$ cd path/to/nixpkgs 14$ nix-build -A androidenv.test-suite.tests 15```