From ad3f837b36b73e71dcd76b8de8145558fb56b60e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Na=C3=AFm=20Camille=20Favier?= Date: Sat, 12 Jul 2025 20:01:20 +0200 Subject: [PATCH] nix: fix flake input Setting `zig/flake-compat` to follow `""` (the current flake, ghostty) is incorrect and introduces an unnecessary dependency cycle. --- flake.lock | 4 +++- 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" ], diff --git a/flake.nix b/flake.nix index 6794afb11..59939f9f8 100644 --- a/flake.nix +++ b/flake.nix @@ -19,7 +19,7 @@ inputs = { nixpkgs.follows = "nixpkgs"; flake-utils.follows = "flake-utils"; - flake-compat.follows = ""; + flake-compat.follows = "flake-compat"; }; };