mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
maintainers/scripts/update.nix: ignore overlays
It makes little sense for update.nix to try to update overlays; for most people, they will point to a read-only repository most of the cases.
This commit is contained in:
parent
ea3ed0c3ae
commit
36b2012447
|
@ -20,7 +20,9 @@ let
|
|||
in
|
||||
[x] ++ nubOn f xs;
|
||||
|
||||
pkgs = import ./../../default.nix { };
|
||||
pkgs = import ./../../default.nix {
|
||||
overlays = [];
|
||||
};
|
||||
|
||||
packagesWith = cond: return: set:
|
||||
nubOn (pkg: pkg.updateScript)
|
||||
|
|
Loading…
Reference in a new issue