nix: fix flake input

Setting `zig/flake-compat` to follow `""` (the current flake, ghostty)
is incorrect and introduces an unnecessary dependency cycle.
This commit is contained in:
Naïm Camille Favier
2025-07-12 20:01:20 +02:00
parent b5000dcd94
commit ad3f837b36
2 changed files with 4 additions and 2 deletions

4
flake.lock generated
View File

@ -73,7 +73,9 @@
}, },
"zig": { "zig": {
"inputs": { "inputs": {
"flake-compat": [], "flake-compat": [
"flake-compat"
],
"flake-utils": [ "flake-utils": [
"flake-utils" "flake-utils"
], ],

View File

@ -19,7 +19,7 @@
inputs = { inputs = {
nixpkgs.follows = "nixpkgs"; nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils"; flake-utils.follows = "flake-utils";
flake-compat.follows = ""; flake-compat.follows = "flake-compat";
}; };
}; };