From 36b2012447b936a1a638e2ddae17507bab8fc839 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sun, 2 Jun 2019 08:55:29 +0200 Subject: [PATCH] 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. --- maintainers/scripts/update.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/maintainers/scripts/update.nix b/maintainers/scripts/update.nix index 61afb64f9fc7..2d1f152ed770 100755 --- a/maintainers/scripts/update.nix +++ b/maintainers/scripts/update.nix @@ -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)