Merge pull request #328137 from Pandapip1/init-android-studio-tools

android-studio-tools: init at 11076708
This commit is contained in:
Artturin 2024-07-21 02:40:16 +03:00 committed by GitHub
commit 2034787ce9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,56 @@
{
lib,
stdenvNoCC,
fetchzip,
makeWrapper,
openjdk,
}:
stdenvNoCC.mkDerivation {
pname = "android-studio-tools";
version = "11076708";
src = fetchzip {
# The only difference between the Linux and Mac versions is a single comment at the top of all the scripts
# Therefore, we will use the Linux version and just patch the comment
url = "https://dl.google.com/android/repository/commandlinetools-linux-11076708_latest.zip";
hash = "sha256-NjxJzHRT2/zZ9YzzjqaMVxpOELkDneQgc1/y1GUnZow=";
};
postPatch = ''
find . -type f -not -path "./bin/*" -exec chmod -x {} \;
'' + lib.optionalString stdenvNoCC.isDarwin ''
for f in cmdline-tools/bin/*; do
sed -i 's|start up script for Linux|start up script for Mac|' $f
done
'';
nativeBuildInputs = [ makeWrapper ];
dontConfigure = true;
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out
cp -r . $out
for f in $out/bin/*; do
wrapProgram $f --set JAVA_HOME "${openjdk}"
done
runHook postInstall
'';
meta = {
description = "Android Studio CLI Tools";
homepage = "https://developer.android.com/studio";
downloadPage = "https://developer.android.com/studio";
changelog = "https://developer.android.com/studio/releases";
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ pandapip1 ];
platforms = lib.platforms.all;
sourceProvenance = with lib.sourceTypes; [ fromSource ]; # The 'binaries' are actually shell scripts
};
}