Avoid top-level with ...;
in pkgs/top-level/release-small.nix
This commit is contained in:
parent
5a64a05c66
commit
210c9eda8a
1 changed files with 7 additions and 1 deletions
|
@ -7,7 +7,13 @@
|
||||||
nixpkgsArgs ? { config = { allowUnfree = false; inHydra = true; }; }
|
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
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue