androidenv: make test suite version track repo.json hash

This should fix autoupdate not recognizing version changes.

Changed files
+1 -1
pkgs
development
mobile
androidenv
+1 -1
pkgs/development/mobile/androidenv/test-suite.nix
···
in
stdenv.mkDerivation {
name = "androidenv-test-suite";
-
version = "1";
+
version = lib.substring 0 8 (builtins.hashFile "sha256" ./repo.json);
buildInputs = lib.mapAttrsToList (name: value: value) all-tests;
buildCommand = ''