aemu: unstable-2023-11-10 -> unstable-2023-08-31

This commit is contained in:
Jörg Thalheim 2023-12-21 15:41:21 +01:00
parent df9aa4ccb2
commit fe60a1a381

View File

@ -1,19 +1,28 @@
{ clangStdenv
, fetchgit
, cmake
, lib
}:
clangStdenv.mkDerivation {
pname = "aemu";
version = "unstable-2023-11-10";
version = "unstable-2023-08-31";
src = fetchgit {
url = "https://android.googlesource.com/platform/hardware/google/aemu";
rev = "ed69e33fb47e6cbe1b1d07c63d4d293dabc770f6";
hash = "sha256-HYwGT48fPC3foqYvhw+RUsnkoEHgQXfMFGQVSpDu4v4=";
rev = "caf5a079f321b6c60ab7b4bf6e5516378c6a7b37";
hash = "sha256-JE0w9/1cSXDIfyISxE/CHv35gv1xyNwbrW24rAKAZVs=";
};
cmakeFlags = [
"-DAEMU_COMMON_GEN_PKGCONFIG=ON"
"-DAEMU_COMMON_BUILD_CONFIG=gfxstream"
];
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "Utility library for common functions used in the Android Emulator";
homepage = "https://android.googlesource.com/platform/hardware/google/aemu";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = [ maintainers.mic92 ];
};
}