treewide: Per RFC45, remove all unquoted URLs
This commit is contained in:
@@ -4,7 +4,7 @@ let
|
||||
# Gradle is a build system that bootstraps itself. This is what it actually
|
||||
# downloads in the bootstrap phase.
|
||||
gradleAllZip = fetchurl {
|
||||
url = http://services.gradle.org/distributions/gradle-4.1-all.zip;
|
||||
url = "http://services.gradle.org/distributions/gradle-4.1-all.zip";
|
||||
sha256 = "1rcrh263vq7a0is800y5z36jj97p67c6zpqzzfcbr7r0qaxb61sw";
|
||||
};
|
||||
|
||||
@@ -55,11 +55,11 @@ in
|
||||
stdenv.mkDerivation {
|
||||
name = "mobilesdk-8.3.2.GA";
|
||||
src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl {
|
||||
url = https://builds.appcelerator.com/mobile/8_3_X/mobilesdk-8.3.2.v20200117111803-linux.zip;
|
||||
url = "https://builds.appcelerator.com/mobile/8_3_X/mobilesdk-8.3.2.v20200117111803-linux.zip";
|
||||
sha256 = "04pfw21jrx9w259lphynwykqjk4c9hm0zix4d40s7mf8mmh3xdx9";
|
||||
}
|
||||
else if stdenv.system == "x86_64-darwin" then fetchurl {
|
||||
url = https://builds.appcelerator.com/mobile/8_3_X/mobilesdk-8.3.2.v20200117111803-osx.zip;
|
||||
url = "https://builds.appcelerator.com/mobile/8_3_X/mobilesdk-8.3.2.v20200117111803-osx.zip";
|
||||
sha256 = "1zflq5hc96lrriw71ya623kkskkisi9yayg8qs03zimi0gksizxw";
|
||||
}
|
||||
else throw "Platform: ${stdenv.system} not supported!";
|
||||
|
||||
Reference in New Issue
Block a user