treewide: remove redundant quotes
This commit is contained in:
@@ -46,11 +46,11 @@ let
|
||||
srcs.io_bazel_rules_sass
|
||||
srcs.platforms
|
||||
(if stdenv.hostPlatform.isDarwin
|
||||
then srcs.${"java_tools_javac11_darwin-v2.0.zip"}
|
||||
else srcs.${"java_tools_javac11_linux-v2.0.zip"})
|
||||
srcs.${"coverage_output_generator-v1.0.zip"}
|
||||
then srcs."java_tools_javac11_darwin-v2.0.zip"
|
||||
else srcs."java_tools_javac11_linux-v2.0.zip")
|
||||
srcs."coverage_output_generator-v1.0.zip"
|
||||
srcs.build_bazel_rules_nodejs
|
||||
srcs.${"android_tools_pkg-0.7.tar.gz"}
|
||||
srcs."android_tools_pkg-0.7.tar.gz"
|
||||
]);
|
||||
|
||||
distDir = runCommand "bazel-deps" {} ''
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
let
|
||||
# See https://mesonbuild.com/Reference-tables.html#cpu-families
|
||||
cpuFamilies = {
|
||||
"aarch64" = "aarch64";
|
||||
"armv6l" = "arm";
|
||||
"armv7l" = "arm";
|
||||
"i686" = "x86";
|
||||
"x86_64" = "x86_64";
|
||||
aarch64 = "aarch64";
|
||||
armv6l = "arm";
|
||||
armv7l = "arm";
|
||||
i686 = "x86";
|
||||
x86_64 = "x86_64";
|
||||
};
|
||||
in
|
||||
python3Packages.buildPythonApplication rec {
|
||||
|
||||
Reference in New Issue
Block a user