treewide: Per RFC45, remove all unquoted URLs

This commit is contained in:
Michael Reilly
2020-04-10 17:54:53 +01:00
committed by Jörg Thalheim
parent bf5eb87033
commit 84cf00f980
9648 changed files with 15370 additions and 15370 deletions
+3 -3
View File
@@ -4,10 +4,10 @@ stdenv.mkDerivation {
name = "racer-1.1";
src = if stdenv.hostPlatform.system == "i686-linux" then fetchurl {
url = http://hippo.nipax.cz/src/racer-1.1.tar.gz;
url = "http://hippo.nipax.cz/src/racer-1.1.tar.gz";
sha256 = "0fll1qkqfcjq87k0jzsilcw701z92lfxn2y5ga1n038772lymxl9";
} else if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl {
url = https://hippo.nipax.cz/src/racer-1.1.64.tar.gz;
url = "https://hippo.nipax.cz/src/racer-1.1.64.tar.gz";
sha256 = "0rjy3gmlhwfkb9zs58j0mc0dar0livwpbc19r6zw5r2k6r7xdan0";
} else
throw "System not supported";
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
meta = {
description = "Car racing game";
homepage = http://hippo.nipax.cz/download.en.php;
homepage = "http://hippo.nipax.cz/download.en.php";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.linux;
};