mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
maintainers/scripts/update: disable aliases
This commit is contained in:
parent
bfaca46529
commit
e3736259f7
1 changed files with 2 additions and 2 deletions
|
@ -17,13 +17,13 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
pkgs = import ./../../default.nix (
|
pkgs = import ./../../default.nix ((
|
||||||
if include-overlays == false then
|
if include-overlays == false then
|
||||||
{ overlays = []; }
|
{ overlays = []; }
|
||||||
else if include-overlays == true then
|
else if include-overlays == true then
|
||||||
{ } # Let Nixpkgs include overlays impurely.
|
{ } # Let Nixpkgs include overlays impurely.
|
||||||
else { overlays = include-overlays; }
|
else { overlays = include-overlays; }
|
||||||
);
|
) // { config.allowAliases = false; });
|
||||||
|
|
||||||
inherit (pkgs) lib;
|
inherit (pkgs) lib;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue