Avoid top-level with ...;
in pkgs/top-level/release-r.nix
This commit is contained in:
parent
8a034c526e
commit
5a64a05c66
1 changed files with 7 additions and 1 deletions
|
@ -6,7 +6,13 @@
|
||||||
*/
|
*/
|
||||||
{ supportedSystems ? [ "x86_64-linux" "aarch64-linux" ] }:
|
{ supportedSystems ? [ "x86_64-linux" "aarch64-linux" ] }:
|
||||||
|
|
||||||
with import ./release-lib.nix { inherit supportedSystems; };
|
let
|
||||||
|
inherit (import ./release-lib.nix { inherit supportedSystems; })
|
||||||
|
mapTestOn
|
||||||
|
packagePlatforms
|
||||||
|
pkgs
|
||||||
|
;
|
||||||
|
in
|
||||||
|
|
||||||
mapTestOn {
|
mapTestOn {
|
||||||
rPackages = packagePlatforms pkgs.rPackages;
|
rPackages = packagePlatforms pkgs.rPackages;
|
||||||
|
|
Loading…
Reference in a new issue