From 6fff5d7fa73a0b82a8a4db02b6b229727ebd03e8 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Wed, 19 Nov 2025 10:50:50 +0000 Subject: [PATCH] =?UTF-8?q?tests:=20`pkgs.system`=20=E2=86=92=20`stdenv.ho?= =?UTF-8?q?stPlatform.system`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `pkgs.system` is deprecated and prints an eval warning. --- tests/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/default.nix b/tests/default.nix index 8d9efea7..2f571b24 100644 --- a/tests/default.nix +++ b/tests/default.nix @@ -4,9 +4,9 @@ lib, linkFarm, self, # The flake instance - system ? pkgs.stdenv.hostPlatform.system, }: let + inherit (pkgs.stdenv.hostPlatform) system; # Use a single common instance of nixpkgs, with allowUnfree # Having a single shared instance should speed up tests a little