nuclei: 3.3.5 -> 3.3.6 (#358083)
[NixPkgs.git] / maintainers / scripts / update.nix
blob3af728d46ea48161207f37886e28c0469076038a
1 /*
2   To run:
4       nix-shell maintainers/scripts/update.nix
6   See https://nixos.org/manual/nixpkgs/unstable/#var-passthru-updateScript
7 */
8 { package ? null
9 , maintainer ? null
10 , predicate ? null
11 , get-script ? pkg: pkg.updateScript or null
12 , path ? null
13 , max-workers ? null
14 , include-overlays ? false
15 , keep-going ? null
16 , commit ? null
17 , skip-prompt ? null
20 let
21   pkgs = import ./../../default.nix ((
22     if include-overlays == false then
23       { overlays = []; }
24     else if include-overlays == true then
25       { } # Let Nixpkgs include overlays impurely.
26     else { overlays = include-overlays; }
27   ) // { config.allowAliases = false; });
29   inherit (pkgs) lib;
31   /* Remove duplicate elements from the list based on some extracted value. O(n^2) complexity.
32    */
33   nubOn = f: list:
34     if list == [] then
35       []
36     else
37       let
38         x = lib.head list;
39         xs = lib.filter (p: f x != f p) (lib.drop 1 list);
40       in
41         [x] ++ nubOn f xs;
43   /* Recursively find all packages (derivations) in `pkgs` matching `cond` predicate.
45     Type: packagesWithPath :: AttrPath → (AttrPath → derivation → bool) → AttrSet → List<AttrSet{attrPath :: str; package :: derivation; }>
46           AttrPath :: [str]
48     The packages will be returned as a list of named pairs comprising of:
49       - attrPath: stringified attribute path (based on `rootPath`)
50       - package: corresponding derivation
51    */
52   packagesWithPath = rootPath: cond: pkgs:
53     let
54       packagesWithPathInner = path: pathContent:
55         let
56           result = builtins.tryEval pathContent;
58           somewhatUniqueRepresentant =
59             { package, attrPath }: {
60               updateScript = (get-script package);
61               # Some updaters use the same `updateScript` value for all packages.
62               # Also compare `meta.description`.
63               position = package.meta.position or null;
64               # We cannot always use `meta.position` since it might not be available
65               # or it might be shared among multiple packages.
66             };
68           dedupResults = lst: nubOn somewhatUniqueRepresentant (lib.concatLists lst);
69         in
70           if result.success then
71             let
72               evaluatedPathContent = result.value;
73             in
74               if lib.isDerivation evaluatedPathContent then
75                 lib.optional (cond path evaluatedPathContent) { attrPath = lib.concatStringsSep "." path; package = evaluatedPathContent; }
76               else if lib.isAttrs evaluatedPathContent then
77                 # If user explicitly points to an attrSet or it is marked for recursion, we recur.
78                 if path == rootPath || evaluatedPathContent.recurseForDerivations or false || evaluatedPathContent.recurseForRelease or false then
79                   dedupResults (lib.mapAttrsToList (name: elem: packagesWithPathInner (path ++ [name]) elem) evaluatedPathContent)
80                 else []
81               else []
82           else [];
83     in
84       packagesWithPathInner rootPath pkgs;
86   /* Recursively find all packages (derivations) in `pkgs` matching `cond` predicate.
87    */
88   packagesWith = packagesWithPath [];
90   /* Recursively find all packages in `pkgs` with updateScript matching given predicate.
91    */
92   packagesWithUpdateScriptMatchingPredicate = cond:
93     packagesWith (path: pkg: (get-script pkg != null) && cond path pkg);
95   /* Recursively find all packages in `pkgs` with updateScript by given maintainer.
96    */
97   packagesWithUpdateScriptAndMaintainer = maintainer':
98     let
99       maintainer =
100         if ! builtins.hasAttr maintainer' lib.maintainers then
101           builtins.throw "Maintainer with name `${maintainer'} does not exist in `maintainers/maintainer-list.nix`."
102         else
103           builtins.getAttr maintainer' lib.maintainers;
104     in
105       packagesWithUpdateScriptMatchingPredicate (path: pkg:
106                          (if builtins.hasAttr "maintainers" pkg.meta
107                            then (if builtins.isList pkg.meta.maintainers
108                                    then builtins.elem maintainer pkg.meta.maintainers
109                                    else maintainer == pkg.meta.maintainers
110                                 )
111                            else false
112                          )
113                    );
115   /* Recursively find all packages under `path` in `pkgs` with updateScript.
116    */
117   packagesWithUpdateScript = path: pkgs:
118     let
119       prefix = lib.splitString "." path;
120       pathContent = lib.attrByPath prefix null pkgs;
121     in
122       if pathContent == null then
123         builtins.throw "Attribute path `${path}` does not exist."
124       else
125         packagesWithPath prefix (path: pkg: (get-script pkg != null))
126                        pathContent;
128   /* Find a package under `path` in `pkgs` and require that it has an updateScript.
129    */
130   packageByName = path: pkgs:
131     let
132         package = lib.attrByPath (lib.splitString "." path) null pkgs;
133     in
134       if package == null then
135         builtins.throw "Package with an attribute name `${path}` does not exist."
136       else if get-script package == null then
137         builtins.throw "Package with an attribute name `${path}` does not have a `passthru.updateScript` attribute defined."
138       else
139         { attrPath = path; inherit package; };
141   /* List of packages matched based on the CLI arguments.
142    */
143   packages =
144     if package != null then
145       [ (packageByName package pkgs) ]
146     else if predicate != null then
147       packagesWithUpdateScriptMatchingPredicate predicate pkgs
148     else if maintainer != null then
149       packagesWithUpdateScriptAndMaintainer maintainer pkgs
150     else if path != null then
151       packagesWithUpdateScript path pkgs
152     else
153       builtins.throw "No arguments provided.\n\n${helpText}";
155   helpText = ''
156     Please run:
158         % nix-shell maintainers/scripts/update.nix --argstr maintainer garbas
160     to run all update scripts for all packages that lists \`garbas\` as a maintainer
161     and have \`updateScript\` defined, or:
163         % nix-shell maintainers/scripts/update.nix --argstr package nautilus
165     to run update script for specific package, or
167         % nix-shell maintainers/scripts/update.nix --arg predicate '(path: pkg: pkg.updateScript.name or null == "gnome-update-script")'
169     to run update script for all packages matching given predicate, or
171         % nix-shell maintainers/scripts/update.nix --argstr path gnome
173     to run update script for all package under an attribute path.
175     You can also add
177         --argstr max-workers 8
179     to increase the number of jobs in parallel, or
181         --argstr keep-going true
183     to continue running when a single update fails.
185     You can also make the updater automatically commit on your behalf from updateScripts
186     that support it by adding
188         --argstr commit true
190     to skip prompt:
192         --argstr skip-prompt true
193   '';
195   /* Transform a matched package into an object for update.py.
196    */
197   packageData = { package, attrPath }: let updateScript = get-script package; in {
198     name = package.name;
199     pname = lib.getName package;
200     oldVersion = lib.getVersion package;
201     updateScript = map builtins.toString (lib.toList (updateScript.command or updateScript));
202     supportedFeatures = updateScript.supportedFeatures or [];
203     attrPath = updateScript.attrPath or attrPath;
204   };
206   /* JSON file with data for update.py.
207    */
208   packagesJson = pkgs.writeText "packages.json" (builtins.toJSON (map packageData packages));
210   optionalArgs =
211     lib.optional (max-workers != null) "--max-workers=${max-workers}"
212     ++ lib.optional (keep-going == "true") "--keep-going"
213     ++ lib.optional (commit == "true") "--commit"
214     ++ lib.optional (skip-prompt == "true") "--skip-prompt";
216   args = [ packagesJson ] ++ optionalArgs;
218 in pkgs.stdenv.mkDerivation {
219   name = "nixpkgs-update-script";
220   buildCommand = ''
221     echo ""
222     echo "----------------------------------------------------------------"
223     echo ""
224     echo "Not possible to update packages using \`nix-build\`"
225     echo ""
226     echo "${helpText}"
227     echo "----------------------------------------------------------------"
228     exit 1
229   '';
230   shellHook = ''
231     unset shellHook # do not contaminate nested shells
232     exec ${pkgs.python3.interpreter} ${./update.py} ${builtins.concatStringsSep " " args}
233   '';
234   nativeBuildInputs = [ pkgs.git pkgs.nix pkgs.cacert ];