Avoid top-level with ...; in pkgs/top-level/release-small.nix

This commit is contained in:
Philip Taron 2024-03-06 11:06:51 -08:00
parent 5a64a05c66
commit 210c9eda8a
No known key found for this signature in database

View file

@ -7,7 +7,13 @@
nixpkgsArgs ? { config = { allowUnfree = false; inHydra = true; }; }
}:
with import ./release-lib.nix { inherit supportedSystems nixpkgsArgs; };
let
release-lib = import ./release-lib.nix {
inherit supportedSystems nixpkgsArgs;
};
inherit (release-lib) all linux darwin mapTestOn unix;
in
{