Use camelCase for all nix files

This commit is contained in:
RGBCube
2023-12-08 16:27:26 +03:00
parent 0e941896fa
commit b3082e3925
4 changed files with 6 additions and 6 deletions

View File

@ -560,5 +560,5 @@ To update it, you can run the following in the repository root:
./nix/build-support/check-zig-cache-hash.sh --update ./nix/build-support/check-zig-cache-hash.sh --update
``` ```
This will write out the `nix/zig-cache-hash.nix` file with the updated hash This will write out the `nix/zigCacheHash.nix` file with the updated hash
that can then be committed and pushed to fix the builds. that can then be committed and pushed to fix the builds.

View File

@ -3,15 +3,15 @@
# Nothing in this script should fail. # Nothing in this script should fail.
set -e set -e
CACHE_HASH_FILE="$(realpath "$(dirname "$0")/../zig-cache-hash.nix")" CACHE_HASH_FILE="$(realpath "$(dirname "$0")/../zigCacheHash.nix")"
help() { help() {
echo "" echo ""
echo "To fix, please (manually) re-run the script from the repository root," echo "To fix, please (manually) re-run the script from the repository root,"
echo "commit, and push the update:" echo "commit, and push the update:"
echo "" echo ""
echo " ./nix/build-support/check-zig-cache-hash.sh --update" echo " ./nix/build-support/check-zigCacheHash.sh --update"
echo " git add nix/zig-cache-hash.nix" echo " git add nix/zigCacheHash.nix"
echo " git commit -m \"nix: update Zig cache hash\"" echo " git commit -m \"nix: update Zig cache hash\""
echo " git push" echo " git push"
echo "" echo ""
@ -52,7 +52,7 @@ fi
# Write out the cache file # Write out the cache file
cat > "${CACHE_HASH_FILE}" <<EOS cat > "${CACHE_HASH_FILE}" <<EOS
# This file is auto-generated! check build-support/check-zig-cache-hash.sh for # This file is auto-generated! check build-support/check-zigCacheHash.sh for
# more details. # more details.
"${ZIG_CACHE_HASH}" "${ZIG_CACHE_HASH}"
EOS EOS

View File

@ -49,7 +49,7 @@
# (It's also possible that you might see a hash mismatch - without the # (It's also possible that you might see a hash mismatch - without the
# network errors - if you don't have a previous instance of the cache # network errors - if you don't have a previous instance of the cache
# derivation in your store already. If so, just update the value as above.) # derivation in your store already. If so, just update the value as above.)
zigCacheHash = import ./zig-cache-hash.nix; zigCacheHash = import ./zigCacheHash.nix;
zigCache = src: stdenv.mkDerivation { zigCache = src: stdenv.mkDerivation {
inherit src; inherit src;