nixpkgs/maintainers/scripts/update.nix

159 lines
4.9 KiB
Nix
Raw Normal View History

2016-12-01 17:58:16 +00:00
{ package ? null
, maintainer ? null
, path ? null
, max-workers ? null
, include-overlays ? false
, keep-going ? null
2016-12-01 17:58:16 +00:00
}:
# TODO: add assert statements
let
pkgs = import ./../../default.nix (if include-overlays then { } else { overlays = []; });
inherit (pkgs) lib;
/* Remove duplicate elements from the list based on some extracted value. O(n^2) complexity.
*/
nubOn = f: list:
if list == [] then
[]
else
let
x = lib.head list;
xs = lib.filter (p: f x != f p) (lib.drop 1 list);
in
[x] ++ nubOn f xs;
2016-12-01 17:58:16 +00:00
packagesWith = cond: return: set:
nubOn (pkg: pkg.updateScript)
(lib.flatten
(lib.mapAttrsToList
(name: pkg:
let
result = builtins.tryEval (
if lib.isDerivation pkg
then lib.optional (cond name pkg) (return name pkg)
else if pkg.recurseForDerivations or false || pkg.recurseForRelease or false
then packagesWith cond return pkg
else []
);
in
if result.success then result.value
2016-12-01 17:58:16 +00:00
else []
)
set
2016-12-01 17:58:16 +00:00
)
);
packagesWithUpdateScriptAndMaintainer = maintainer':
let
maintainer =
if ! builtins.hasAttr maintainer' lib.maintainers then
2018-03-18 05:16:43 +00:00
builtins.throw "Maintainer with name `${maintainer'} does not exist in `maintainers/maintainer-list.nix`."
2016-12-01 17:58:16 +00:00
else
builtins.getAttr maintainer' lib.maintainers;
2016-12-01 17:58:16 +00:00
in
packagesWith (name: pkg: builtins.hasAttr "updateScript" pkg &&
(if builtins.hasAttr "maintainers" pkg.meta
then (if builtins.isList pkg.meta.maintainers
then builtins.elem maintainer pkg.meta.maintainers
else maintainer == pkg.meta.maintainers
)
else false
)
)
(name: pkg: pkg)
pkgs;
packagesWithUpdateScript = path:
let
attrSet = lib.attrByPath (lib.splitString "." path) null pkgs;
in
if attrSet == null then
builtins.throw "Attribute path `${path}` does not exists."
else
packagesWith (name: pkg: builtins.hasAttr "updateScript" pkg)
(name: pkg: pkg)
attrSet;
2016-12-01 17:58:16 +00:00
packageByName = name:
2016-12-10 03:37:37 +00:00
let
package = lib.attrByPath (lib.splitString "." name) null pkgs;
2016-12-10 03:37:37 +00:00
in
if package == null then
2016-12-01 17:58:16 +00:00
builtins.throw "Package with an attribute name `${name}` does not exists."
2016-12-10 03:37:37 +00:00
else if ! builtins.hasAttr "updateScript" package then
builtins.throw "Package with an attribute name `${name}` does not have a `passthru.updateScript` attribute defined."
2016-12-01 17:58:16 +00:00
else
2016-12-10 03:37:37 +00:00
package;
2016-12-01 17:58:16 +00:00
packages =
if package != null then
[ (packageByName package) ]
else if maintainer != null then
packagesWithUpdateScriptAndMaintainer maintainer
else if path != null then
packagesWithUpdateScript path
2016-12-01 17:58:16 +00:00
else
builtins.throw "No arguments provided.\n\n${helpText}";
helpText = ''
Please run:
% nix-shell maintainers/scripts/update.nix --argstr maintainer garbas
2016-12-01 17:58:16 +00:00
to run all update scripts for all packages that lists \`garbas\` as a maintainer
and have \`updateScript\` defined, or:
% nix-shell maintainers/scripts/update.nix --argstr package gnome3.nautilus
2016-12-01 17:58:16 +00:00
to run update script for specific package, or
% nix-shell maintainers/scripts/update.nix --argstr path gnome3
to run update script for all package under an attribute path.
2016-12-01 17:58:16 +00:00
You can also add
--argstr max-workers 8
to increase the number of jobs in parallel, or
--argstr keep-going true
to continue running when a single update fails.
2016-12-01 17:58:16 +00:00
'';
packageData = package: {
name = package.name;
pname = lib.getName package;
updateScript = map builtins.toString (lib.toList package.updateScript);
};
packagesJson = pkgs.writeText "packages.json" (builtins.toJSON (map packageData packages));
optionalArgs =
lib.optional (max-workers != null) "--max-workers=${max-workers}"
++ lib.optional (keep-going == "true") "--keep-going";
args = [ packagesJson ] ++ optionalArgs;
2016-12-01 17:58:16 +00:00
in pkgs.stdenv.mkDerivation {
name = "nixpkgs-update-script";
buildCommand = ''
echo ""
echo "----------------------------------------------------------------"
echo ""
echo "Not possible to update packages using \`nix-build\`"
echo ""
echo "${helpText}"
echo "----------------------------------------------------------------"
exit 1
'';
shellHook = ''
unset shellHook # do not contaminate nested shells
exec ${pkgs.python3.interpreter} ${./update.py} ${builtins.concatStringsSep " " args}
2016-12-01 17:58:16 +00:00
'';
}