scrubDrv: Don't scrub the system and meta attributes

Changed files
+1 -1
nixos
+1 -1
nixos/release.nix
···
forAllSystems = pkgs.lib.genAttrs supportedSystems;
-
scrubDrv = drv: let res = { inherit (drv) drvPath outPath type name; outputName = "out"; out = res; }; in res;
+
scrubDrv = drv: let res = { inherit (drv) drvPath outPath type name system meta; outputName = "out"; out = res; }; in res;
callTest = fn: args: forAllSystems (system: scrubDrv (import fn ({ inherit system; } // args)));