diff --git a/pkgs/tools/package-management/nix/2_26/packaging/everything.nix b/pkgs/tools/package-management/nix/2_26/packaging/everything.nix index d8fc835f235d..8eb5e71f59e7 100644 --- a/pkgs/tools/package-management/nix/2_26/packaging/everything.nix +++ b/pkgs/tools/package-management/nix/2_26/packaging/everything.nix @@ -184,6 +184,12 @@ makeOutputs { inherit (nix-cli) version; # Should not be required inherit (drv) drvPath; + /** + The build platform's system string, used by Nix to dispatch derivations to the correct kinds of hosts. + + This particular attribute is _not_ used for that purpose, but it has the same value, and some other expressions expect it to be present. + */ + inherit (drv) system; tests = drv.tests or {}; src = patchedSrc; };