Merge pull request #80562 from NixOS/cus-broken

common-updater-scripts: Handle errors in src hashing
This commit is contained in:
Jan Tojnar
2020-02-20 20:25:50 +01:00
committed by GitHub
2 changed files with 13 additions and 10 deletions
+2 -3
View File
@@ -2,6 +2,7 @@
, maintainer ? null
, path ? null
, max-workers ? null
, include-overlays ? false
, keep-going ? null
}:
@@ -20,9 +21,7 @@ let
in
[x] ++ nubOn f xs;
pkgs = import ./../../default.nix {
overlays = [];
};
pkgs = import ./../../default.nix (if include-overlays then { } else { overlays = []; });
packagesWith = cond: return: set:
nubOn (pkg: pkg.updateScript)