fix: pkgs.system -> pkgs.stdenv.hostPlatform.system

This commit is contained in:
Defelo 2025-11-04 15:49:40 +01:00
commit 2282b31fa1
No known key found for this signature in database

View file

@ -27,7 +27,7 @@
{
overlays.nixpkgs-review = final: prev: {
inherit (nixpkgs-review.packages.${final.system}) nixpkgs-review;
inherit (nixpkgs-review.packages.${final.stdenv.hostPlatform.system}) nixpkgs-review;
};
legacyPackages = eachSystem lib.id;
@ -46,7 +46,7 @@
inherit (pkgs) nixpkgs-review;
fmt = pkgs.runCommandNoCCLocal "fmt-check" { } ''
cp -r --no-preserve=mode ${self} repo
${lib.getExe self.formatter.${pkgs.system}} -C repo --ci
${lib.getExe self.formatter.${pkgs.stdenv.hostPlatform.system}} -C repo --ci
touch $out
'';
});