@@ -32,12 +32,17 @@ spec = describe "flake.nix rendering" do
3232 description = "Development infrastructure for test-project";
3333 inputs = {
3434 nixpkgs-src.url = "github:NixOS/nixpkgs";
35+ flake-compat = {
36+ flake = false;
37+ url = github:edolstra/flake-compat;
38+ };
3539 flake-utils.url = "github:numtide/flake-utils";
3640 };
3741 outputs = {
3842 nixpkgs-src,
3943 flake-utils,
4044 self,
45+ ...
4146 }:
4247 flake-utils.lib.eachSystem (with flake-utils.lib.system; [x86_64-linux aarch64-linux]) (system: let
4348 nixpkgs = nixpkgs-src.legacyPackages.${system};
@@ -62,12 +67,17 @@ spec = describe "flake.nix rendering" do
6267 description = "Development infrastructure for test-project";
6368 inputs = {
6469 nixpkgs-src.url = "github:NixOS/nixpkgs";
70+ flake-compat = {
71+ flake = false;
72+ url = github:edolstra/flake-compat;
73+ };
6574 flake-utils.url = "github:numtide/flake-utils";
6675 };
6776 outputs = {
6877 nixpkgs-src,
6978 flake-utils,
7079 self,
80+ ...
7181 }:
7282 flake-utils.lib.eachSystem (with flake-utils.lib.system; [x86_64-linux aarch64-linux]) (system: let
7383 nixpkgs = nixpkgs-src.legacyPackages.${system};
@@ -101,6 +111,10 @@ spec = describe "flake.nix rendering" do
101111 description = "Development infrastructure for test-project";
102112 inputs = {
103113 nixpkgs-src.url = "github:NixOS/nixpkgs";
114+ flake-compat = {
115+ flake = false;
116+ url = github:edolstra/flake-compat;
117+ };
104118 flake-utils.url = "github:numtide/flake-utils";
105119 pre-commit-hooks-lib = {
106120 inputs.flake-utils.follows = "flake-utils";
@@ -112,6 +126,7 @@ spec = describe "flake.nix rendering" do
112126 flake-utils,
113127 pre-commit-hooks-lib,
114128 self,
129+ ...
115130 }:
116131 flake-utils.lib.eachSystem (with flake-utils.lib.system; [x86_64-linux aarch64-linux]) (system: let
117132 nixpkgs = nixpkgs-src.legacyPackages.${system};
@@ -157,6 +172,10 @@ spec = describe "flake.nix rendering" do
157172 description = "Development infrastructure for test-project";
158173 inputs = {
159174 nixpkgs-src.url = "github:NixOS/nixpkgs";
175+ flake-compat = {
176+ flake = false;
177+ url = github:edolstra/flake-compat;
178+ };
160179 flake-utils.url = "github:numtide/flake-utils";
161180 pre-commit-hooks-lib = {
162181 inputs.flake-utils.follows = "flake-utils";
@@ -168,6 +187,7 @@ spec = describe "flake.nix rendering" do
168187 flake-utils,
169188 pre-commit-hooks-lib,
170189 self,
190+ ...
171191 }:
172192 flake-utils.lib.eachSystem (with flake-utils.lib.system; [x86_64-linux aarch64-linux]) (system: let
173193 nixpkgs = nixpkgs-src.legacyPackages.${system};
@@ -203,6 +223,10 @@ spec = describe "flake.nix rendering" do
203223 description = "Development infrastructure for test-project";
204224 inputs = {
205225 nixpkgs-src.url = "github:NixOS/nixpkgs";
226+ flake-compat = {
227+ flake = false;
228+ url = github:edolstra/flake-compat;
229+ };
206230 flake-utils.url = "github:numtide/flake-utils";
207231 mach-nix.url = "github:DavHau/mach-nix?ref=3.5.0";
208232 };
@@ -211,6 +235,7 @@ spec = describe "flake.nix rendering" do
211235 flake-utils,
212236 mach-nix,
213237 self,
238+ ...
214239 }:
215240 flake-utils.lib.eachSystem (with flake-utils.lib.system; [x86_64-linux aarch64-linux]) (system: let
216241 nixpkgs = nixpkgs-src.legacyPackages.${system};
0 commit comments