From acc63d3522b0c9b92ef3ab9214102bedaa944faf Mon Sep 17 00:00:00 2001 From: Skyler Grey Date: Fri, 2 Jan 2026 12:46:54 +0000 Subject: [PATCH] flake: fix eval warning Change-Id: pyxzxvyxylmxuqkqtsytprxllusopxur In change nkzyltot (2d2056ea, flake: fix eval warning), pkgs.system was changed to pkgs.stdenv.hostPlatform.system. This was required after https://github.com/NixOS/nixpkgs/pull/456527 made using pkgs.system a warning Unfortunately you missed one... oops Signed-off-by: Skyler Grey --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index cc382c0b..24154b19 100644 --- a/flake.nix +++ b/flake.nix @@ -76,7 +76,7 @@ }; buildGoApplication = (self.callPackage "${gomod2nix}/builder" { - gomod2nix = gomod2nix.legacyPackages.${pkgs.system}.gomod2nix; + gomod2nix = gomod2nix.legacyPackages.${pkgs.stdenv.hostPlatform.system}.gomod2nix; }).buildGoApplication; modules = ./nix/gomod2nix.toml; sqlite-lib = self.callPackage ./nix/pkgs/sqlite-lib.nix { -- 2.43.0