about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/misc/cquery/wrapper
blob: 8b3e57290429d6dd0378bd4a19cd8ee1ff955b9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#! @shell@ -e

initString="--init={\"cacheDirectory\": \"/tmp/cquery\", \"extraClangArguments\": [@standard_library_includes@"

if [ "${NIX_CFLAGS_COMPILE}" != "" ]; then
  read -a cflags_array <<< ${NIX_CFLAGS_COMPILE}
  initString+=$(printf ', \"%s\"' "${cflags_array[@]}")
fi

initString+="]}"

exec -a "$0" "@out@/bin/@wrapped@" "${initString}" "$@"