diff options
| author | seth <[email protected]> | 2024-09-20 22:22:24 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-09-20 22:22:24 -0400 |
| commit | 44e4ec57de3b3e2fdfa6dfef91a3ca72b8cb2d94 (patch) | |
| tree | 3876df05ecdfd650bee4b26e8153c6c1c2454985 /.gitignore | |
| parent | 6f9929cfb3f2a4bf12b383b3e6d7a9113ce5cf72 (diff) | |
feat: update to zig 0.13.0 (#24)
* chore: update flake.lock
Flake lock file updates:
• Updated input 'nixpkgs':
'github:NixOS/nixpkgs/9bb1e7571aadf31ddb4af77fc64b2d59580f9a39' (2024-09-05)
→ 'github:NixOS/nixpkgs/268bb5090a3c6ac5e1615b38542a868b52ef8088' (2024-09-19)
• Updated input 'zig-overlay':
'github:mitchellh/zig-overlay/9e2cc0e99621be1b765dc95a8ec80740a685b660' (2024-09-06)
→ 'github:mitchellh/zig-overlay/2419eb9f968f451e2c342a69ec44112de5aa36b9' (2024-09-21)
* style: use nixfmt
* style: format with nixfmt
* refactor: use flake-utils
* fix: only use `zig` in dev shell
Pulling in `zig.hook` sets variables like `ZIG_GLOBAL_CACHE_DIR` that
don't work too nicely outside of a Nix build process -- as in, Zig can't
access files and fails
* feat: update to zig 0.13.0
* chore: remove library output
This isn't needed for this example
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 87 |
1 files changed, 78 insertions, 9 deletions
@@ -1,15 +1,84 @@ -# zig -zig-cache/ +### Zig +.zig-cache/ zig-out/ -build/ -build-*/ -docgen_tmp/ -# direnv -.direnv -.envrc -# nix +### Nix result result-* repl-result-* + + +### https://raw.github.com/github/gitignore/8779ee73af62c669e7ca371aaab8399d87127693/Global/Linux.gitignore + +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + + +### https://raw.github.com/github/gitignore/8779ee73af62c669e7ca371aaab8399d87127693/Global/macOS.gitignore + +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon
+ +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + + +### https://raw.github.com/github/gitignore/8779ee73af62c669e7ca371aaab8399d87127693/Global/Windows.gitignore + +# Windows thumbnail cache files +Thumbs.db +Thumbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk |
