mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
57 lines
1.5 KiB
Nix
57 lines
1.5 KiB
Nix
{
|
|
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.hostPlatform.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
|
|
};
|
|
}
|