treewide: remove redundant quotes

This commit is contained in:
volth
2019-08-26 21:40:19 +00:00
parent fe9c9f719d
commit 35d68ef143
293 changed files with 860 additions and 860 deletions
+6 -6
View File
@@ -18,12 +18,12 @@ let
# Other srcs are avilable like 32-bit mac & win, but I have only
# included the ones most likely to be needed by Nixpkgs users.
platforms = {
"x86_64-linux" = "linux";
"i686-linux" = "linux32";
"x86_64-darwin" = "osx";
"i686-darwin" = "osx32";
"x86_64-cygwin" = "win";
"i686-cygwin" = "win32";
x86_64-linux = "linux";
i686-linux = "linux32";
x86_64-darwin = "osx";
i686-darwin = "osx32";
x86_64-cygwin = "win";
i686-cygwin = "win32";
};
dfVersionTriple = splitString "." dfVersion;