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
+5 -5
View File
@@ -30,13 +30,13 @@ let
};
hplipPlatforms = {
"i686-linux" = "x86_32";
"x86_64-linux" = "x86_64";
"armv6l-linux" = "arm32";
"armv7l-linux" = "arm32";
i686-linux = "x86_32";
x86_64-linux = "x86_64";
armv6l-linux = "arm32";
armv7l-linux = "arm32";
};
hplipArch = hplipPlatforms."${stdenv.hostPlatform.system}"
hplipArch = hplipPlatforms.${stdenv.hostPlatform.system}
or (throw "HPLIP not supported on ${stdenv.hostPlatform.system}");
pluginArches = [ "x86_32" "x86_64" "arm32" ];