android-studio-preview: init at 3.0.0.5 canary 6
Added the `androidStudioPackages` attribute containing both the `stable` and `preview` channels. Changed the attribute `andorid-studio` to point to `androidStudioPackages.stable` Added the attribute `andorid-studio-preview` pointing to `androidStudioPackages.preview` I have tested this package using the new koltin support, no issues found yet.
This commit is contained in:
parent
9d28cd9ca4
commit
9ab69a3416
|
@ -1,3 +1,4 @@
|
||||||
|
{ pname, version, build, src, meta }:
|
||||||
{ bash
|
{ bash
|
||||||
, buildFHSUserEnv
|
, buildFHSUserEnv
|
||||||
, coreutils
|
, coreutils
|
||||||
|
@ -32,12 +33,9 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
version = "2.3.3.0";
|
|
||||||
build = "162.4069837";
|
|
||||||
|
|
||||||
androidStudio = stdenv.mkDerivation {
|
androidStudio = stdenv.mkDerivation {
|
||||||
name = "android-studio";
|
inherit src meta;
|
||||||
|
name = "${pname}";
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
makeWrapper
|
makeWrapper
|
||||||
unzip
|
unzip
|
||||||
|
@ -96,32 +94,21 @@ let
|
||||||
--set QT_XKB_CONFIG_ROOT "${xkeyboard_config}/share/X11/xkb" \
|
--set QT_XKB_CONFIG_ROOT "${xkeyboard_config}/share/X11/xkb" \
|
||||||
--set FONTCONFIG_FILE ${fontsConf}
|
--set FONTCONFIG_FILE ${fontsConf}
|
||||||
'';
|
'';
|
||||||
src = fetchurl {
|
|
||||||
url = "https://dl.google.com/dl/android/studio/ide-zips/${version}/android-studio-ide-${build}-linux.zip";
|
|
||||||
sha256 = "0zzis9m2xp44xwkj0zvcqw5rh3iyd3finyi5nqhgira1fkacz0qk";
|
|
||||||
};
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "The Official IDE for Android";
|
|
||||||
homepage = https://developer.android.com/studio/index.html;
|
|
||||||
license = licenses.asl20;
|
|
||||||
platforms = [ "x86_64-linux" ];
|
|
||||||
maintainers = with maintainers; [ primeos ];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# Android Studio downloads prebuilt binaries as part of the SDK. These tools
|
# Android Studio downloads prebuilt binaries as part of the SDK. These tools
|
||||||
# (e.g. `mksdcard`) have `/lib/ld-linux.so.2` set as the interpreter. An FHS
|
# (e.g. `mksdcard`) have `/lib/ld-linux.so.2` set as the interpreter. An FHS
|
||||||
# environment is used as a work around for that.
|
# environment is used as a work around for that.
|
||||||
fhsEnv = buildFHSUserEnv {
|
fhsEnv = buildFHSUserEnv {
|
||||||
name = "android-studio-fhs-env";
|
name = "${pname}-fhs-env";
|
||||||
};
|
};
|
||||||
|
|
||||||
in writeTextFile {
|
in writeTextFile {
|
||||||
name = "android-studio-${version}";
|
name = "${pname}-${version}";
|
||||||
destination = "/bin/android-studio";
|
destination = "/bin/${pname}";
|
||||||
executable = true;
|
executable = true;
|
||||||
text = ''
|
text = ''
|
||||||
#!${bash}/bin/bash
|
#!${bash}/bin/bash
|
||||||
${fhsEnv}/bin/android-studio-fhs-env ${androidStudio}/bin/studio.sh
|
${fhsEnv}/bin/${pname}-fhs-env ${androidStudio}/bin/studio.sh
|
||||||
'';
|
'';
|
||||||
}
|
}
|
|
@ -0,0 +1,46 @@
|
||||||
|
{ stdenv, callPackage, fetchurl, makeFontsConf }:
|
||||||
|
let
|
||||||
|
mkStudio = opts: callPackage (import ./common.nix opts);
|
||||||
|
in rec {
|
||||||
|
stable = mkStudio rec {
|
||||||
|
pname = "android-studio";
|
||||||
|
version = "2.3.3.0";
|
||||||
|
build = "162.4069837";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://dl.google.com/dl/android/studio/ide-zips/${version}/android-studio-ide-${build}-linux.zip";
|
||||||
|
sha256 = "0zzis9m2xp44xwkj0zvcqw5rh3iyd3finyi5nqhgira1fkacz0qk";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "The Official IDE for Android";
|
||||||
|
homepage = https://developer.android.com/studio/index.html;
|
||||||
|
license = licenses.asl20;
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
maintainers = with maintainers; [ primeos ];
|
||||||
|
};
|
||||||
|
} {
|
||||||
|
fontsConf = makeFontsConf {
|
||||||
|
fontDirectories = [];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
preview = mkStudio rec {
|
||||||
|
pname = "android-studio-preview";
|
||||||
|
version = "3.0.0.5";
|
||||||
|
build = "171.4163606";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://dl.google.com/dl/android/studio/ide-zips/${version}/android-studio-ide-${build}-linux.zip";
|
||||||
|
sha256 = "1gxnpw4jf3iic9d47sjbndpysq8kk8pgnb8l7azkc2rba5cj8skg";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = stable.meta // {
|
||||||
|
homepage = https://developer.android.com/studio/preview/index.html;
|
||||||
|
};
|
||||||
|
} {
|
||||||
|
fontsConf = makeFontsConf {
|
||||||
|
fontDirectories = [];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -13253,11 +13253,9 @@ with pkgs;
|
||||||
|
|
||||||
amsn = callPackage ../applications/networking/instant-messengers/amsn { };
|
amsn = callPackage ../applications/networking/instant-messengers/amsn { };
|
||||||
|
|
||||||
android-studio = callPackage ../applications/editors/android-studio {
|
androidStudioPackages = callPackage ../applications/editors/android-studio/packages.nix {};
|
||||||
fontsConf = makeFontsConf {
|
android-studio = androidStudioPackages.stable;
|
||||||
fontDirectories = [];
|
android-studio-preview = androidStudioPackages.preview;
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
antfs-cli = callPackage ../applications/misc/antfs-cli {};
|
antfs-cli = callPackage ../applications/misc/antfs-cli {};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue