nix: fix flake input

Setting `zig/flake-compat` to follow `""` (the current flake, ghostty)
is incorrect and introduces an unnecessary dependency cycle.
pull/7924/head
Naïm Camille Favier 2025-07-12 20:01:20 +02:00
parent b5000dcd94
commit ad3f837b36
No known key found for this signature in database
GPG Key ID: 95AFCE8211908325
2 changed files with 4 additions and 2 deletions

View File

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

View File

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