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:
Jan Tojnar 2019-06-02 08:55:29 +02:00
parent ea3ed0c3ae
commit 36b2012447
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -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)