From 4f3e27caaed189b0dd47cef2d8b4bbd054d9257d Mon Sep 17 00:00:00 2001 From: Yash Garg Date: Mon, 29 Jul 2024 18:41:39 +0530 Subject: [PATCH] fix: deprecated `lib.cartesianProductofSets` --- overlays/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlays/default.nix b/overlays/default.nix index 5de4638..320afa4 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -142,7 +142,7 @@ in # # For example: `pkgs.rpi-kernels.v6_6_31.bcm2712' rpi-kernels = rpi-kernels ( - final.lib.cartesianProductOfSets # this gets renamed yet again to cartesianProduct in April 19 2024 + final.lib.cartesianProduct { board = boards; version = (builtins.attrNames versions); } ); }