tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
android-studio: 2.3.2.0 -> 2.3.3.0
Michael Weiss
8 years ago
b615c2e9
55ca2cf4
+6
-5
1 changed file
expand all
collapse all
unified
split
pkgs
applications
editors
android-studio
default.nix
+6
-5
pkgs/applications/editors/android-studio/default.nix
···
33
33
34
34
let
35
35
36
36
-
version = "2.3.2.0";
37
37
-
build = "162.3934792";
36
36
+
version = "2.3.3.0";
37
37
+
build = "162.4069837";
38
38
39
39
androidStudio = stdenv.mkDerivation {
40
40
name = "android-studio";
···
98
98
'';
99
99
src = fetchurl {
100
100
url = "https://dl.google.com/dl/android/studio/ide-zips/${version}/android-studio-ide-${build}-linux.zip";
101
101
-
sha256 = "19wmbvmiqa9znvnslmp0xmkq4avpmgpzmyaai1fa28388qra4cvf";
101
101
+
sha256 = "0zzis9m2xp44xwkj0zvcqw5rh3iyd3finyi5nqhgira1fkacz0qk";
102
102
};
103
103
-
meta = {
103
103
+
meta = with stdenv.lib; {
104
104
description = "The Official IDE for Android";
105
105
homepage = https://developer.android.com/studio/index.html;
106
106
-
license = stdenv.lib.licenses.asl20;
106
106
+
license = licenses.asl20;
107
107
platforms = [ "x86_64-linux" ];
108
108
+
maintainers = with maintainers; [ primeos ];
108
109
};
109
110
};
110
111