opentelemetry-cpp: format (#439948)

authored by Peder Bergebakken Sundt and committed by GitHub 147f2303 6396e99c

+14 -15
+14 -15
pkgs/by-name/op/opentelemetry-cpp/package.nix
··· 65 65 66 66 strictDeps = true; 67 67 68 - cmakeFlags = 69 - [ 70 - (lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic)) 71 - (lib.cmakeBool "WITH_BENCHMARK" false) 72 - (lib.cmakeBool "WITH_OTLP_HTTP" enableHttp) 73 - (lib.cmakeBool "WITH_OTLP_GRPC" enableGrpc) 74 - (lib.cmakeBool "WITH_PROMETHEUS" enablePrometheus) 75 - (lib.cmakeBool "WITH_ELASTICSEARCH" enableElasticSearch) 76 - (lib.cmakeBool "WITH_ZIPKIN" enableZipkin) 77 - (lib.cmakeFeature "OTELCPP_PROTO_PATH" "${opentelemetry-proto}") 78 - ] 79 - ++ lib.optionals (cxxStandard != null) [ 80 - (lib.cmakeFeature "CMAKE_CXX_STANDARD" cxxStandard) 81 - (lib.cmakeFeature "WITH_STL" "CXX${cxxStandard}") 82 - ]; 68 + cmakeFlags = [ 69 + (lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic)) 70 + (lib.cmakeBool "WITH_BENCHMARK" false) 71 + (lib.cmakeBool "WITH_OTLP_HTTP" enableHttp) 72 + (lib.cmakeBool "WITH_OTLP_GRPC" enableGrpc) 73 + (lib.cmakeBool "WITH_PROMETHEUS" enablePrometheus) 74 + (lib.cmakeBool "WITH_ELASTICSEARCH" enableElasticSearch) 75 + (lib.cmakeBool "WITH_ZIPKIN" enableZipkin) 76 + (lib.cmakeFeature "OTELCPP_PROTO_PATH" "${opentelemetry-proto}") 77 + ] 78 + ++ lib.optionals (cxxStandard != null) [ 79 + (lib.cmakeFeature "CMAKE_CXX_STANDARD" cxxStandard) 80 + (lib.cmakeFeature "WITH_STL" "CXX${cxxStandard}") 81 + ]; 83 82 84 83 outputs = [ 85 84 "out"