about summary refs log tree commit diff
path: root/pkgs/by-name/an/android-studio-tools/package.nix
blob: 2b1bca479841896ced861113e7e57ed2e05a52a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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.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
  };
}