diff options
| author | Naïm Camille Favier <n@monade.li> | 2025-07-12 20:01:20 +0200 |
|---|---|---|
| committer | Naïm Camille Favier <n@monade.li> | 2025-07-13 00:32:15 +0200 |
| commit | ad3f837b36b73e71dcd76b8de8145558fb56b60e (patch) | |
| tree | 0eaee0d67930286c9a6b7ab2cf23f199ab7a812e | |
| parent | b5000dcd94b75d745dacbcd3d4bfaf181d288671 (diff) | |
nix: fix flake input
Setting `zig/flake-compat` to follow `""` (the current flake, ghostty)
is incorrect and introduces an unnecessary dependency cycle.
| -rw-r--r-- | flake.lock | 4 | ||||
| -rw-r--r-- | flake.nix | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/flake.lock b/flake.lock index 4b8ce405c..f64213e39 100644 --- a/flake.lock +++ b/flake.lock @@ -73,7 +73,9 @@ }, "zig": { "inputs": { - "flake-compat": [], + "flake-compat": [ + "flake-compat" + ], "flake-utils": [ "flake-utils" ], @@ -19,7 +19,7 @@ inputs = { nixpkgs.follows = "nixpkgs"; flake-utils.follows = "flake-utils"; - flake-compat.follows = ""; + flake-compat.follows = "flake-compat"; }; }; |
