lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build-support/vm/deb/deb-closure: quote generated urls

otherwise, eval fails when the experimental no-url-literals feature is activated

unquoted urls are discouraged after https://github.com/NixOS/rfcs/pull/45

ajs124 3f8ad50f 06365ba4

+1 -1
+1 -1
pkgs/build-support/vm/deb/deb-closure.pl
··· 156 156 $cleanedName =~ s/~//g; 157 157 158 158 print " (fetchurl {\n"; 159 - print " url = $urlPrefix/$cdata->{Filename};\n"; 159 + print " url = \"$urlPrefix/$cdata->{Filename}\";\n"; 160 160 print " sha256 = \"$cdata->{SHA256}\";\n"; 161 161 print " name = \"$cleanedName\";\n" if $cleanedName ne $origName; 162 162 print " })\n";